ui_test 0.30.4

A test framework for testing rustc diagnostics output
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0423]: expected function, found macro `println`
 --> examples_tests/rustc_basic/hello.rs:2:5
  |
2 |     println("hello world")
  |     ^^^^^^^ not a function
  |
help: use `!` to invoke the macro
  |
2 |     println!("hello world")
  |            +

error: aborting due to 1 previous error

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