rust/tests/fail/rustc-error.stderr

15 lines
365 B
Plaintext
Raw Normal View History

error[E0423]: expected function, found macro `println`
--> $DIR/rustc-error.rs:LL:CC
|
LL | println("Hello, world!");
| ^^^^^^^ not a function
|
help: use `!` to invoke the macro
|
LL | println!("Hello, world!");
| +
error: aborting due to previous error
For more information about this error, try `rustc --explain E0423`.