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