2024-02-16 20:02:50 +00:00
|
|
|
//@ edition:2018
|
2018-11-02 21:07:56 +00:00
|
|
|
|
|
|
|
#[no_implicit_prelude]
|
|
|
|
mod bar {
|
|
|
|
fn f() {
|
|
|
|
::std::print!(""); // OK
|
2019-09-15 10:12:14 +00:00
|
|
|
print!(); //~ ERROR cannot find macro `print` in this scope
|
2018-11-02 21:07:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|