]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-3878.rs
Consider privacy more carefully when suggesting accessing fields
[rust.git] / src / test / ui / issues / issue-3878.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 #![allow(path_statements)]
5 #![feature(box_syntax)]
6
7 pub fn main() {
8     let y: Box<_> = box 1;
9     y;
10 }