mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 17:50:39 +00:00
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
11 lines
176 B
Rust
11 lines
176 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
|
|
|
|
pub struct Scheduler {
|
|
/// The event loop used to drive the scheduler and perform I/O
|
|
event_loop: Box<isize>
|
|
}
|
|
|
|
pub fn main() { }
|