2018-08-08 12:28:26 +00:00
|
|
|
error: `?Trait` bounds are only permitted at the point where a type parameter is declared
|
2021-09-28 21:15:28 +00:00
|
|
|
--> $DIR/maybe-bounds-where.rs:1:28
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | struct S1<T>(T) where (T): ?Sized;
|
2021-09-28 21:15:28 +00:00
|
|
|
| ^^^^^^
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: `?Trait` bounds are only permitted at the point where a type parameter is declared
|
2021-09-28 21:15:28 +00:00
|
|
|
--> $DIR/maybe-bounds-where.rs:4:27
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | struct S2<T>(T) where u8: ?Sized;
|
2021-09-28 21:15:28 +00:00
|
|
|
| ^^^^^^
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: `?Trait` bounds are only permitted at the point where a type parameter is declared
|
2021-09-28 21:15:28 +00:00
|
|
|
--> $DIR/maybe-bounds-where.rs:7:35
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | struct S3<T>(T) where &'static T: ?Sized;
|
2021-09-28 21:15:28 +00:00
|
|
|
| ^^^^^^
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: `?Trait` bounds are only permitted at the point where a type parameter is declared
|
2021-09-28 21:15:28 +00:00
|
|
|
--> $DIR/maybe-bounds-where.rs:12:34
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | struct S4<T>(T) where for<'a> T: ?Trait<'a>;
|
2021-09-28 21:15:28 +00:00
|
|
|
| ^^^^^^^^^^
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: `?Trait` bounds are only permitted at the point where a type parameter is declared
|
2021-09-28 21:15:28 +00:00
|
|
|
--> $DIR/maybe-bounds-where.rs:21:21
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | fn f() where T: ?Sized {}
|
2021-09-28 21:15:28 +00:00
|
|
|
| ^^^^^^
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2021-08-15 04:53:40 +00:00
|
|
|
warning: default bound relaxed for a type parameter, but this does nothing because the given bound is not a default; only `?Sized` is supported
|
|
|
|
--> $DIR/maybe-bounds-where.rs:12:11
|
|
|
|
|
|
|
|
|
LL | struct S4<T>(T) where for<'a> T: ?Trait<'a>;
|
|
|
|
| ^
|
|
|
|
|
2018-08-08 12:28:26 +00:00
|
|
|
error[E0203]: type parameter has more than one relaxed default bound, only one is supported
|
2021-08-15 04:53:40 +00:00
|
|
|
--> $DIR/maybe-bounds-where.rs:16:11
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | struct S5<T>(*const T) where T: ?Trait<'static> + ?Sized;
|
|
|
|
| ^
|
|
|
|
|
2019-09-30 00:00:20 +00:00
|
|
|
warning: default bound relaxed for a type parameter, but this does nothing because the given bound is not a default; only `?Sized` is supported
|
2021-08-15 04:53:40 +00:00
|
|
|
--> $DIR/maybe-bounds-where.rs:16:11
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | struct S5<T>(*const T) where T: ?Trait<'static> + ?Sized;
|
|
|
|
| ^
|
|
|
|
|
2021-08-15 04:53:40 +00:00
|
|
|
error: aborting due to 6 previous errors; 2 warnings emitted
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-11-29 22:16:26 +00:00
|
|
|
For more information about this error, try `rustc --explain E0203`.
|