2019-09-15 13:12:14 +03:00
|
|
|
error: cannot find macro `print` in this scope
|
2018-11-03 00:07:56 +03:00
|
|
|
--> $DIR/no_implicit_prelude-2018.rs:7:9
|
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | print!();
|
2018-11-03 00:07:56 +03:00
|
|
|
| ^^^^^
|
2020-08-06 16:42:06 +06:00
|
|
|
|
|
2023-06-10 00:06:34 +08:00
|
|
|
help: consider importing this macro
|
|
|
|
|
|
|
|
|
LL + use std::print;
|
|
|
|
|
|
2018-11-03 00:07:56 +03:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-11-03 00:07:56 +03:00
|
|
|
|