]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lexical-scopes.stderr
Rollup merge of #65965 - GuillaumeGomez:clean-up-librustc_typeck-error-codes, r=Mark...
[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:3:13
3    |
4 LL |     let t = T { i: 0 };
5    |             ^ not a struct, variant or union type
6    |
7 help: possible better candidate is found in another module, you can import it into scope
8    |
9 LL | use T;
10    |
11
12 error[E0599]: no function or associated item named `f` found for type `Foo` in the current scope
13   --> $DIR/lexical-scopes.rs:10:10
14    |
15 LL |     Foo::f();
16    |          ^ function or associated item not found in `Foo`
17
18 error: aborting due to 2 previous errors
19
20 Some errors have detailed explanations: E0574, E0599.
21 For more information about an error, try `rustc --explain E0574`.