blob: 361da4cc78e0074fedbc050d5ac73a3b2593e4b3 [file] [log] [blame]
error[E0423]: expected function, found macro `assert`
--> $DIR/resolve-hint-macro.rs:2:5
|
LL | assert(true);
| ^^^^^^
|
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`.