blob: 4b553ec48037fb6f5d1549dae00a6e5c00b0736b [file] [edit]
error[E0423]: cannot find function `println` in this scope
--> tests/fail/rustc-error.rs:LL:CC
|
LL | println("Hello, world!");
| ^^^^^^^ not found in this scope
|
= note: a macro named `println` exists in another namespace
help: use `!` to invoke the macro
|
LL | println!("Hello, world!");
| +
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0423`.