]> git.proxmox.com Git - rustc.git/blame - 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
CommitLineData
32a655c1 1error[E0423]: expected function, found macro `assert`
0731742a 2 --> $DIR/resolve-hint-macro.rs:2:5
32a655c1 3 |
0531ce1d 4LL | assert(true);
ba9703b0
XL
5 | ^^^^^^
6 |
7help: use `!` to invoke the macro
8 |
9LL | assert!(true);
10 | ^
32a655c1 11
041b39d2 12error: aborting due to previous error
32a655c1 13
0531ce1d 14For more information about this error, try `rustc --explain E0423`.