mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
207 B
Rust
12 lines
207 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() { }
|