mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
14 lines
253 B
Plaintext
14 lines
253 B
Plaintext
error: cannot find macro `print` in this scope
|
|
--> $DIR/no_implicit_prelude-2018.rs:7:9
|
|
|
|
|
LL | print!();
|
|
| ^^^^^
|
|
|
|
|
help: consider importing this macro
|
|
|
|
|
LL + use std::print;
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|