]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lexical-scopes.stderr
Auto merge of #93718 - thomcc:used-macho, r=pnkfelix
[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 | fn g<Foo>() {
11    |      --- function or associated item `f` not found for this type parameter
12 LL |     Foo::f();
13    |          ^ function or associated item not found in `Foo`
14
15 error: aborting due to 2 previous errors
16
17 Some errors have detailed explanations: E0574, E0599.
18 For more information about an error, try `rustc --explain E0574`.