about summary refs log tree commit diff
path: root/src/tools/miri/tests/fail/rustc-error.stderr
blob: 31d9946c411f5038384243266693c74352ccda9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0423]: expected function, found macro `println`
  --> tests/fail/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 1 previous error

For more information about this error, try `rustc --explain E0423`.