We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c05278 commit 372c69dCopy full SHA for 372c69d
src/test/compile-fail/double-import.rs
@@ -19,7 +19,7 @@ mod sub2 {
19
fn foo() {} // implementation 2
20
}
21
22
-use sub1::foo; //~ note previous import of `foo` here
23
-use sub2::foo; //~ error a value named `foo` has already been imported in this module [e0252]
+use sub1::foo; //~ NOTE previous import of `foo` here
+use sub2::foo; //~ ERROR a value named `foo` has already been imported in this module [E0252]
24
25
fn main() {}
0 commit comments