2018-02-06 09:28:25 -06:00
|
|
|
warning[E0122]: generic bounds are ignored in type aliases
|
2018-02-05 14:20:57 -06:00
|
|
|
--> $DIR/param-bounds-ignored.rs:15:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | type SVec<T: Send> = Vec<T>;
|
2018-02-05 14:20:57 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-02-06 09:28:25 -06:00
|
|
|
warning[E0122]: generic bounds are ignored in type aliases
|
2018-02-05 14:20:57 -06:00
|
|
|
--> $DIR/param-bounds-ignored.rs:16:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | type VVec<'b, 'a: 'b> = Vec<&'a i32>;
|
2018-02-05 14:20:57 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-02-06 09:28:25 -06:00
|
|
|
warning[E0122]: generic bounds are ignored in type aliases
|
2018-02-05 14:20:57 -06:00
|
|
|
--> $DIR/param-bounds-ignored.rs:17:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | type WVec<'b, T: 'b> = Vec<T>;
|
2018-02-05 14:20:57 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|