We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4f62b6 commit 4fa6595Copy full SHA for 4fa6595
crates/ide-assists/src/tests/generated.rs
@@ -909,6 +909,29 @@ fn qux(bar: Bar, baz: Baz) {}
909
)
910
}
911
912
+#[test]
913
+fn doctest_expand_glob_reexport() {
914
+ check_doc_test(
915
+ "expand_glob_reexport",
916
+ r#####"
917
+mod foo {
918
+ pub struct Bar;
919
+ pub struct Baz;
920
+}
921
+
922
+pub use foo::*$0;
923
+"#####,
924
925
926
927
928
929
930
+pub use foo::{Bar, Baz};
931
932
+ )
933
934
935
#[test]
936
fn doctest_explicit_enum_discriminant() {
937
check_doc_test(
0 commit comments