]> git.lizzy.rs Git - rust.git/blob - src/test/ui/generic-associated-types/generic-associated-types-where.stderr
Rollup merge of #67233 - Luro02:cursor_traits, r=sfackler
[rust.git] / src / test / ui / generic-associated-types / generic-associated-types-where.stderr
1 error: type-generic associated types are not yet implemented
2   --> $DIR/generic-associated-types-where.rs:11:5
3    |
4 LL |     type Assoc2<T> where T: Display;
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: for more information, see https://github.com/rust-lang/rust/issues/44265
8
9 error: type-generic associated types are not yet implemented
10   --> $DIR/generic-associated-types-where.rs:13:5
11    |
12 LL |     type Assoc3<T>;
13    |     ^^^^^^^^^^^^^^^
14    |
15    = note: for more information, see https://github.com/rust-lang/rust/issues/44265
16
17 error: type-generic associated types are not yet implemented
18   --> $DIR/generic-associated-types-where.rs:15:5
19    |
20 LL |     type WithDefault<'a, T: Debug + 'a> = dyn Iterator<Item=T>;
21    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
22    |
23    = note: for more information, see https://github.com/rust-lang/rust/issues/44265
24
25 error: aborting due to 3 previous errors
26