]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lexical-scopes.stderr
Merge commit 'e18101137866b79045fee0ef996e696e68c920b4' into clippyup
[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 error[E0599]: no function or associated item named `f` found for type parameter `Foo` in the current scope
8   --> $DIR/lexical-scopes.rs:10:10
9    |
10 LL |     Foo::f();
11    |          ^ function or associated item not found in `Foo`
12
13 error: aborting due to 2 previous errors
14
15 Some errors have detailed explanations: E0574, E0599.
16 For more information about an error, try `rustc --explain E0574`.