]> git.proxmox.com Git - rustc.git/blob - src/test/ui/resolve/resolve-hint-macro.stderr
New upstream version 1.44.1+dfsg1
[rustc.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 | ^^^^^^
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`.