mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
246 B
Rust
19 lines
246 B
Rust
// check-pass
|
|
|
|
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() {}
|