summary refs log tree commit diff
path: root/src/test/ui/issues/issue-4830.rs
blob: cf94094a7985fc806957678130915ad558fbbae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
// compile-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() { }