
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
10 lines
176 B
Rust
10 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() { }
|