rust/src/test/ui/reject-specialized-drops-8142.stderr

152 lines
6.0 KiB
Plaintext
Raw Normal View History

error[E0367]: `Drop` impl requires `AddsBnd: Bound` but the union it is implemented for does not
--> $DIR/reject-specialized-drops-8142.rs:67:21
|
LL | impl<AddsBnd:Copy + Bound> Drop for Union<AddsBnd> { fn drop(&mut self) { } } // REJECT
| ^^^^^
|
note: the implementor must specify the same requirement
--> $DIR/reject-specialized-drops-8142.rs:21:1
|
LL | union Union<T: Copy> { f: T }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0367]: `Drop` impl requires `'adds_bnd: 'al` but the struct it is implemented for does not
--> $DIR/reject-specialized-drops-8142.rs:23:20
2018-08-08 07:28:26 -05:00
|
LL | impl<'al,'adds_bnd:'al> Drop for K<'al,'adds_bnd> { // REJECT
| ^^^
2018-08-08 07:28:26 -05:00
|
note: the implementor must specify the same requirement
2018-12-25 09:56:47 -06:00
--> $DIR/reject-specialized-drops-8142.rs:5:1
2018-08-08 07:28:26 -05:00
|
LL | struct K<'l1,'l2> { x: &'l1 i8, y: &'l2 u8 }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0367]: `Drop` impl requires `'adds_bnd: 'al` but the struct it is implemented for does not
--> $DIR/reject-specialized-drops-8142.rs:27:67
2018-08-08 07:28:26 -05:00
|
LL | impl<'al,'adds_bnd> Drop for L<'al,'adds_bnd> where 'adds_bnd:'al { // REJECT
| ^^^
2018-08-08 07:28:26 -05:00
|
note: the implementor must specify the same requirement
2018-12-25 09:56:47 -06:00
--> $DIR/reject-specialized-drops-8142.rs:6:1
2018-08-08 07:28:26 -05:00
|
LL | struct L<'l1,'l2> { x: &'l1 i8, y: &'l2 u8 }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/reject-specialized-drops-8142.rs:33:1
2018-08-08 07:28:26 -05:00
|
LL | impl Drop for N<'static> { fn drop(&mut self) { } } // REJECT
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lifetime mismatch
|
= note: expected struct `N<'n>`
found struct `N<'static>`
2019-10-10 18:58:35 -05:00
note: the lifetime `'n` as defined on the struct at 8:10...
2018-12-25 09:56:47 -06:00
--> $DIR/reject-specialized-drops-8142.rs:8:10
2018-08-08 07:28:26 -05:00
|
LL | struct N<'n> { x: &'n i8 }
| ^^
= note: ...does not necessarily outlive the static lifetime
error[E0366]: `Drop` impls cannot be specialized
--> $DIR/reject-specialized-drops-8142.rs:40:1
2018-08-08 07:28:26 -05:00
|
LL | impl Drop for P<i8> { fn drop(&mut self) { } } // REJECT
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: use the same sequence of generic type, lifetime and const parameters as the struct definition
2018-12-25 09:56:47 -06:00
--> $DIR/reject-specialized-drops-8142.rs:10:1
2018-08-08 07:28:26 -05:00
|
LL | struct P<Tp> { x: *const Tp }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0367]: `Drop` impl requires `AddsBnd: Bound` but the struct it is implemented for does not
--> $DIR/reject-specialized-drops-8142.rs:43:14
2018-08-08 07:28:26 -05:00
|
LL | impl<AddsBnd:Bound> Drop for Q<AddsBnd> { fn drop(&mut self) { } } // REJECT
| ^^^^^
2018-08-08 07:28:26 -05:00
|
note: the implementor must specify the same requirement
2018-12-25 09:56:47 -06:00
--> $DIR/reject-specialized-drops-8142.rs:11:1
2018-08-08 07:28:26 -05:00
|
LL | struct Q<Tq> { x: *const Tq }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0367]: `Drop` impl requires `AddsRBnd: 'rbnd` but the struct it is implemented for does not
--> $DIR/reject-specialized-drops-8142.rs:46:21
2018-08-08 07:28:26 -05:00
|
LL | impl<'rbnd,AddsRBnd:'rbnd> Drop for R<AddsRBnd> { fn drop(&mut self) { } } // REJECT
| ^^^^^
2018-08-08 07:28:26 -05:00
|
note: the implementor must specify the same requirement
2018-12-25 09:56:47 -06:00
--> $DIR/reject-specialized-drops-8142.rs:12:1
2018-08-08 07:28:26 -05:00
|
LL | struct R<Tr> { x: *const Tr }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0366]: `Drop` impls cannot be specialized
--> $DIR/reject-specialized-drops-8142.rs:55:1
2018-08-08 07:28:26 -05:00
|
LL | impl<One> Drop for V<One,One> { fn drop(&mut self) { } } // REJECT
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: use the same sequence of generic type, lifetime and const parameters as the struct definition
2018-12-25 09:56:47 -06:00
--> $DIR/reject-specialized-drops-8142.rs:16:1
2018-08-08 07:28:26 -05:00
|
LL | struct V<Tva, Tvb> { x: *const Tva, y: *const Tvb }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0495]: cannot infer an appropriate lifetime for lifetime parameter `'lw` due to conflicting requirements
--> $DIR/reject-specialized-drops-8142.rs:58:1
2018-08-08 07:28:26 -05:00
|
LL | impl<'lw> Drop for W<'lw,'lw> { fn drop(&mut self) { } } // REJECT
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-10-10 18:58:35 -05:00
note: first, the lifetime cannot outlive the lifetime `'l1` as defined on the struct at 17:10...
2018-12-25 09:56:47 -06:00
--> $DIR/reject-specialized-drops-8142.rs:17:10
2018-08-08 07:28:26 -05:00
|
LL | struct W<'l1, 'l2> { x: &'l1 i8, y: &'l2 u8 }
| ^^^
2019-10-10 18:58:35 -05:00
note: ...but the lifetime must also be valid for the lifetime `'l2` as defined on the struct at 17:15...
2018-12-25 09:56:47 -06:00
--> $DIR/reject-specialized-drops-8142.rs:17:15
2018-08-08 07:28:26 -05:00
|
LL | struct W<'l1, 'l2> { x: &'l1 i8, y: &'l2 u8 }
| ^^^
note: ...so that the types are compatible
--> $DIR/reject-specialized-drops-8142.rs:58:1
|
LL | impl<'lw> Drop for W<'lw,'lw> { fn drop(&mut self) { } } // REJECT
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= note: expected `W<'l1, 'l2>`
found `W<'_, '_>`
2018-08-08 07:28:26 -05:00
error[E0367]: `Drop` impl requires `AddsBnd: Bound` but the enum it is implemented for does not
--> $DIR/reject-specialized-drops-8142.rs:61:14
|
LL | impl<AddsBnd:Bound> Drop for Enum<AddsBnd> { fn drop(&mut self) { } } // REJECT
| ^^^^^
|
note: the implementor must specify the same requirement
--> $DIR/reject-specialized-drops-8142.rs:19:1
|
LL | enum Enum<T> { Variant(T) }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0367]: `Drop` impl requires `AddsBnd: Bound` but the struct it is implemented for does not
--> $DIR/reject-specialized-drops-8142.rs:64:14
|
LL | impl<AddsBnd:Bound> Drop for TupleStruct<AddsBnd> { fn drop(&mut self) { } } // REJECT
| ^^^^^
|
note: the implementor must specify the same requirement
--> $DIR/reject-specialized-drops-8142.rs:20:1
|
LL | struct TupleStruct<T>(T);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 11 previous errors
2018-08-08 07:28:26 -05:00
2019-09-12 08:00:44 -05:00
Some errors have detailed explanations: E0308, E0366, E0367, E0495.
2018-08-08 07:28:26 -05:00
For more information about an error, try `rustc --explain E0308`.