]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/resolve-variant-assoc-item.stderr
173976d707c70cc0569d65ef624892fbdef00ff7
[rust.git] / src / test / ui / resolve / resolve-variant-assoc-item.stderr
1 error[E0433]: failed to resolve: not a module `V`
2   --> $DIR/resolve-variant-assoc-item.rs:5:8
3    |
4 LL |     E::V::associated_item;
5    |        ^ not a module `V`
6
7 error[E0433]: failed to resolve: not a module `V`
8   --> $DIR/resolve-variant-assoc-item.rs:6:5
9    |
10 LL |     V::associated_item;
11    |     ^ not a module `V`
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0433`.