rust/tests/ui/lexical-scopes.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
833 B
Plaintext
Raw Normal View History

2018-08-08 20:28:26 +08:00
error[E0574]: expected struct, variant or union type, found type parameter `T`
2018-12-25 23:56:47 +08:00
--> $DIR/lexical-scopes.rs:3:13
2018-08-08 20:28:26 +08:00
|
2022-10-16 16:59:28 +08:00
LL | struct T { i: i32 }
2022-10-26 06:50:11 +08:00
| - you might have meant to refer to this struct
LL | fn f<T>() {
2022-09-22 07:32:37 +08:00
| - found this type parameter
2019-03-09 20:03:44 +08:00
LL | let t = T { i: 0 };
2018-08-08 20:28:26 +08:00
| ^ not a struct, variant or union type
error[E0599]: no function or associated item named `f` found for type parameter `Foo` in the current scope
2018-12-08 02:15:36 +08:00
--> $DIR/lexical-scopes.rs:10:10
2018-08-08 20:28:26 +08:00
|
LL | fn g<Foo>() {
| --- function or associated item `f` not found for this type parameter
2019-03-09 20:03:44 +08:00
LL | Foo::f();
2019-03-11 07:20:15 +08:00
| ^ function or associated item not found in `Foo`
2018-08-08 20:28:26 +08:00
error: aborting due to 2 previous errors
2019-10-11 21:23:18 +08:00
Some errors have detailed explanations: E0574, E0599.
For more information about an error, try `rustc --explain E0574`.