summaryrefslogtreecommitdiffstats
path: root/tests/ui/unique/unique-object-move.rs
blob: bb35a9b2d73e2cd55ac0e0a3e88e24419590b64a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// run-pass
#![allow(dead_code)]
// Issue #5192

// pretty-expanded FIXME #23616

pub trait EventLoop { fn foo(&self) {} }

pub struct UvEventLoop {
    uvio: isize
}

impl EventLoop for UvEventLoop { }

pub fn main() {
    let loop_: Box<dyn EventLoop> = Box::new(UvEventLoop { uvio: 0 }) as Box<dyn EventLoop>;
    let _loop2_ = loop_;
}