mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
12 lines
209 B
Rust
12 lines
209 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
pub struct Scheduler {
|
|
/// The event loop used to drive the scheduler and perform I/O
|
|
event_loop: Box<isize>
|
|
}
|
|
|
|
pub fn main() { }
|