summary refs log tree commit diff
path: root/src/test/ui/issues/issue-47703-tuple.rs
blob: 377eeb67ae1b95d0f691faf7fde636a8a988ed6d (plain)
1
2
3
4
5
6
7
8
9
10
11
// compile-pass

struct WithDrop;

impl Drop for WithDrop {
    fn drop(&mut self) {}
}

fn consume(x: (&mut (), WithDrop)) -> &mut () { x.0 }

fn main() {}