rust/tests/ui/issues/issue-5192.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
645 B
Rust
Raw Normal View History

// run-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616
pub trait EventLoop {
fn dummy(&self) { }
}
pub struct UvEventLoop {
uvio: isize
}
impl UvEventLoop {
pub fn new() -> UvEventLoop {
UvEventLoop {
uvio: 0
}
}
}
impl EventLoop for UvEventLoop {
}
pub struct Scheduler {
2019-05-28 18:47:21 +00:00
event_loop: Box<dyn EventLoop+'static>,
}
impl Scheduler {
2019-05-28 18:47:21 +00:00
pub fn new(event_loop: Box<dyn EventLoop+'static>) -> Scheduler {
Scheduler {
event_loop: event_loop,
}
}
}
pub fn main() {
let _sched = Scheduler::new(Box::new(UvEventLoop::new()) as Box<dyn EventLoop>);
}