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