]> git.proxmox.com Git - rustc.git/blame - src/test/ui/hygiene/no_implicit_prelude-2018.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / hygiene / no_implicit_prelude-2018.rs
CommitLineData
13cf67c4
XL
1// edition:2018
2
3#[no_implicit_prelude]
4mod bar {
5 fn f() {
6 ::std::print!(""); // OK
e1599b0c 7 print!(); //~ ERROR cannot find macro `print` in this scope
13cf67c4
XL
8 }
9}
10
11fn main() {}