]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/empty-where-clause.stderr
Rollup merge of #106591 - Ezrashaw:attempted-integer-identifer, r=Estebank
[rust.git] / tests / ui / proc-macro / empty-where-clause.stderr
1 error[E0412]: cannot find type `MissingType1` in this scope
2   --> $DIR/empty-where-clause.rs:8:12
3    |
4 LL |     field: MissingType1
5    |            ^^^^^^^^^^^^ not found in this scope
6
7 error[E0412]: cannot find type `MissingType2` in this scope
8   --> $DIR/empty-where-clause.rs:12:20
9    |
10 LL | struct TupleStruct(MissingType2) where;
11    |                    ^^^^^^^^^^^^ not found in this scope
12
13 error[E0412]: cannot find type `MissingType3` in this scope
14   --> $DIR/empty-where-clause.rs:15:13
15    |
16 LL |     Variant(MissingType3)
17    |             ^^^^^^^^^^^^ not found in this scope
18
19 error: aborting due to 3 previous errors
20
21 For more information about this error, try `rustc --explain E0412`.