]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lexical-scopes.stderr
Various minor/cosmetic improvements to code
[rust.git] / src / test / ui / lexical-scopes.stderr
1 error[E0574]: expected struct, variant or union type, found type parameter `T`
2   --> $DIR/lexical-scopes.rs:13:13
3    |
4 LL |     let t = T { i: 0 }; //~ ERROR expected struct, variant or union type, found type parameter `T`
5    |             ^ not a struct, variant or union type
6 help: possible better candidate is found in another module, you can import it into scope
7    |
8 LL | use T;
9    |
10
11 error[E0599]: no function or associated item named `f` found for type `Foo` in the current scope
12   --> $DIR/lexical-scopes.rs:20:10
13    |
14 LL |     Foo::f(); //~ ERROR no function or associated item named `f`
15    |     -----^
16    |     |
17    |     function or associated item not found in `Foo`
18
19 error: aborting due to 2 previous errors
20
21 Some errors occurred: E0574, E0599.
22 For more information about an error, try `rustc --explain E0574`.