2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2014-05-05 18:56:44 -07:00
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2013-02-09 23:00:55 +10:00
|
|
|
pub struct Scheduler {
|
|
|
|
/// The event loop used to drive the scheduler and perform I/O
|
2015-03-25 17:06:52 -07:00
|
|
|
event_loop: Box<isize>
|
2013-02-09 23:00:55 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() { }
|