mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
155 B
Rust
12 lines
155 B
Rust
// check-pass
|
|
|
|
struct WithDrop;
|
|
|
|
impl Drop for WithDrop {
|
|
fn drop(&mut self) {}
|
|
}
|
|
|
|
fn consume(x: (&mut (), WithDrop)) -> &mut () { x.0 }
|
|
|
|
fn main() {}
|