]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lexical-scopes.stderr
Auto merge of #62748 - luca-barbieri:optimize-refcell-borrow, r=RalfJung
[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 help: possible better candidate is found in another module, you can import it into scope
7    |
8 LL | use T;
9    |
10
11 error[E0599]: no function or associated item named `f` found for type `Foo` in the current scope
12   --> $DIR/lexical-scopes.rs:10:10
13    |
14 LL |     Foo::f();
15    |          ^ function or associated item not found in `Foo`
16
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0599`.