]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-4830.rs
point at private fields in struct literal
[rust.git] / src / test / ui / issues / issue-4830.rs
1 // check-pass
2 #![allow(dead_code)]
3
4 // pretty-expanded FIXME #23616
5
6 pub struct Scheduler {
7     /// The event loop used to drive the scheduler and perform I/O
8     event_loop: Box<isize>
9 }
10
11 pub fn main() { }