]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-35075.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / issues / issue-35075.stderr
CommitLineData
8faf50e0 1error[E0412]: cannot find type `Foo` in this scope
0731742a 2 --> $DIR/issue-35075.rs:2:12
8faf50e0 3 |
532ac7d7 4LL | inner: Foo<T>
0731742a 5 | ^^^ not found in this scope
e74abb32 6 |
0731742a
XL
7help: there is an enum variant `Baz::Foo`; try using the variant's enum
8 |
532ac7d7 9LL | inner: Baz
94222f64 10 | ~~~
8faf50e0
XL
11
12error[E0412]: cannot find type `Foo` in this scope
0731742a 13 --> $DIR/issue-35075.rs:6:9
8faf50e0 14 |
532ac7d7 15LL | Foo(Foo<T>)
0731742a 16 | ^^^ not found in this scope
e74abb32 17 |
0731742a
XL
18help: there is an enum variant `Baz::Foo`; try using the variant's enum
19 |
532ac7d7 20LL | Foo(Baz)
94222f64 21 | ~~~
8faf50e0
XL
22
23error: aborting due to 2 previous errors
24
25For more information about this error, try `rustc --explain E0412`.