]> git.lizzy.rs Git - rust.git/blob - tests/ui/lexical-scopes.stderr
add tests for 107090
[rust.git] / tests / 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 | struct T { i: i32 }
5    |        - you might have meant to refer to this struct
6 LL | fn f<T>() {
7    |      - found this type parameter
8 LL |     let t = T { i: 0 };
9    |             ^ not a struct, variant or union type
10
11 error[E0599]: no function or associated item named `f` found for type parameter `Foo` in the current scope
12   --> $DIR/lexical-scopes.rs:10:10
13    |
14 LL | fn g<Foo>() {
15    |      --- function or associated item `f` not found for this type parameter
16 LL |     Foo::f();
17    |          ^ function or associated item not found in `Foo`
18
19 error: aborting due to 2 previous errors
20
21 Some errors have detailed explanations: E0574, E0599.
22 For more information about an error, try `rustc --explain E0574`.