]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/resolve-hint-macro.stderr
Merge commit 'b40ea209e7f14c8193ddfc98143967b6a2f4f5c9' into clippyup
[rust.git] / src / test / ui / resolve / resolve-hint-macro.stderr
1 error[E0423]: expected function, found macro `assert`
2   --> $DIR/resolve-hint-macro.rs:2:5
3    |
4 LL |     assert(true);
5    |     ^^^^^^ not a function
6    |
7 help: use `!` to invoke the macro
8    |
9 LL |     assert!(true);
10    |           ^
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0423`.