rust/tests/ui/hygiene/no_implicit_prelude-2018.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
253 B
Plaintext
Raw Normal View History

error: cannot find macro `print` in this scope
--> $DIR/no_implicit_prelude-2018.rs:7:9
|
2019-03-09 06:03:44 -06:00
LL | print!();
| ^^^^^
2020-08-06 05:42:06 -05:00
|
help: consider importing this macro
|
LL + use std::print;
|
error: aborting due to previous error