20 lines
286 B
Rust
20 lines
286 B
Rust
// compile-pass
|
|
#![allow(dead_code)]
|
|
#![feature(nll)]
|
|
|
|
struct MyStruct<'a> {
|
|
field: &'a mut (),
|
|
field2: WithDrop
|
|
}
|
|
|
|
struct WithDrop;
|
|
|
|
impl Drop for WithDrop {
|
|
fn drop(&mut self) {}
|
|
}
|
|
|
|
impl<'a> MyStruct<'a> {
|
|
fn consume(self) -> &'a mut () { self.field }
|
|
}
|
|
|
|
fn main() {}
|