]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/use/use-from-trait.stderr
clarify what the item is in "not a module" error
[rust.git] / src / test / ui / use / use-from-trait.stderr
index b43a32988cafdea7c776aca8c8015111554aae26..af4b3b0c455e152977e8e9979d3e328628c8db66 100644 (file)
@@ -1,32 +1,32 @@
 error[E0253]: `foo` is not directly importable
-  --> $DIR/use-from-trait.rs:12:5
+  --> $DIR/use-from-trait.rs:1:5
    |
 LL | use Trait::foo;
    |     ^^^^^^^^^^ cannot be imported directly
 
 error[E0253]: `Assoc` is not directly importable
-  --> $DIR/use-from-trait.rs:14:5
+  --> $DIR/use-from-trait.rs:2:5
    |
 LL | use Trait::Assoc;
    |     ^^^^^^^^^^^^ cannot be imported directly
 
 error[E0253]: `C` is not directly importable
-  --> $DIR/use-from-trait.rs:16:5
+  --> $DIR/use-from-trait.rs:3:5
    |
 LL | use Trait::C;
    |     ^^^^^^^^ cannot be imported directly
 
 error[E0432]: unresolved import `Foo`
-  --> $DIR/use-from-trait.rs:19:5
+  --> $DIR/use-from-trait.rs:5:5
    |
 LL | use Foo::new;
-   |     ^^^ Not a module `Foo`
+   |     ^^^ `Foo` is a struct, not a module
 
 error[E0432]: unresolved import `Foo`
-  --> $DIR/use-from-trait.rs:23:5
+  --> $DIR/use-from-trait.rs:7:5
    |
 LL | use Foo::C2;
-   |     ^^^ Not a module `Foo`
+   |     ^^^ `Foo` is a struct, not a module
 
 error: aborting due to 5 previous errors