blob: 7d35ce7e65e5879e1bfedd3b0a3c7ade8d9f6cdf [file] [log] [blame]
error[E0423]: expected function, found macro `assert`
--> $DIR/resolve-hint-macro.rs:2:5
|
LL | assert(true);
| ^^^^^^ not a function
|
help: use `!` to invoke the macro
|
LL | assert!(true);
| ^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0423`.