1error[E0574]: expected struct, variant or union type, found type parameter `T`
2  --> $DIR/lexical-scopes.rs:3:13
3   |
4LL |     let t = T { i: 0 };
5   |             ^ not a struct, variant or union type
6
7error[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   |
10LL |     Foo::f();
11   |          ^ function or associated item not found in `Foo`
12
13error: aborting due to 2 previous errors
14
15Some errors have detailed explanations: E0574, E0599.
16For more information about an error, try `rustc --explain E0574`.
17