summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/type-alias-where.stderr
blob: 8789d2665ad92f49431c41fc51ea0c4497e2a89e (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:8: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:10: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