]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-35075.stderr
Rollup merge of #60492 - acrrd:issues/54054_chain, r=SimonSapin
[rust.git] / src / test / ui / issues / issue-35075.stderr
1 error[E0412]: cannot find type `Foo` in this scope
2   --> $DIR/issue-35075.rs:2:12
3    |
4 LL |     inner: Foo<T>
5    |            ^^^ not found in this scope
6 help: there is an enum variant `Baz::Foo`; try using the variant's enum
7    |
8 LL |     inner: Baz
9    |            ^^^
10
11 error[E0412]: cannot find type `Foo` in this scope
12   --> $DIR/issue-35075.rs:6:9
13    |
14 LL |     Foo(Foo<T>)
15    |         ^^^ not found in this scope
16 help: there is an enum variant `Baz::Foo`; try using the variant's enum
17    |
18 LL |     Foo(Baz)
19    |         ^^^
20
21 error: aborting due to 2 previous errors
22
23 For more information about this error, try `rustc --explain E0412`.