| 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`. |