rust/src/test/ui/dropck/dropck-eyepatch-implies-unsafe-impl.stderr

26 lines
1.0 KiB
Plaintext
Raw Normal View History

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 | | }
| |_^
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 | | }
| |_^
error: aborting due to 2 previous errors
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0569"