2016-10-17 11:02:23 -05:00
|
|
|
error[E0569]: requires an `unsafe impl` declaration due to `#[may_dangle]` attribute
|
|
|
|
--> $DIR/dropck-eyepatch-implies-unsafe-impl.rs:32:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | / impl<#[may_dangle] A, B: fmt::Debug> Drop for Pt<A, B> {
|
|
|
|
LL | | //~^ ERROR requires an `unsafe impl` declaration due to `#[may_dangle]` attribute
|
|
|
|
LL | |
|
|
|
|
LL | | // (unsafe to access self.1 due to #[may_dangle] on A)
|
2018-02-24 17:01:39 -06:00
|
|
|
LL | | fn drop(&mut self) { println!("drop {} {:?}", self.0, self.2); }
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | | }
|
2017-04-14 18:38:10 -05:00
|
|
|
| |_^
|
2016-10-17 11:02:23 -05:00
|
|
|
|
|
|
|
error[E0569]: requires an `unsafe impl` declaration due to `#[may_dangle]` attribute
|
|
|
|
--> $DIR/dropck-eyepatch-implies-unsafe-impl.rs:38:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | / impl<#[may_dangle] 'a, 'b, B: fmt::Debug> Drop for Pr<'a, 'b, B> {
|
|
|
|
LL | | //~^ ERROR requires an `unsafe impl` declaration due to `#[may_dangle]` attribute
|
|
|
|
LL | |
|
|
|
|
LL | | // (unsafe to access self.1 due to #[may_dangle] on 'a)
|
2018-02-24 17:01:39 -06:00
|
|
|
LL | | fn drop(&mut self) { println!("drop {} {:?}", self.0, self.2); }
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | | }
|
2017-04-14 18:38:10 -05:00
|
|
|
| |_^
|
2016-10-17 11:02:23 -05:00
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2016-10-17 11:02:23 -05:00
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0569"
|