summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/type-alias-where.stderr
blob: fb83817926696f7215190aade2db1205dd6d9421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error: where clauses are not allowed after the type for type aliases
  --> $DIR/type-alias-where.rs:6:15
   |
LL | type Bar = () where u32: Copy;
   |               ^^^^^^^^^^^^^^^
   |
   = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information

error: where clauses are not allowed after the type for type aliases
  --> $DIR/type-alias-where.rs:8:15
   |
LL | type Baz = () where;
   |               ^^^^^
   |
   = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information

error: aborting due to 2 previous errors