]> git.proxmox.com Git - rustc.git/blame - src/test/ui/resolve/resolve-hint-macro.stderr
New upstream version 1.54.0+dfsg1
[rustc.git] / src / test / ui / resolve / resolve-hint-macro.stderr
CommitLineData
17df50a5 1error[E0423]: expected function, found macro `assert_eq`
0731742a 2 --> $DIR/resolve-hint-macro.rs:2:5
32a655c1 3 |
17df50a5
XL
4LL | assert_eq(1, 1);
5 | ^^^^^^^^^ not a function
ba9703b0
XL
6 |
7help: use `!` to invoke the macro
8 |
17df50a5
XL
9LL | assert_eq!(1, 1);
10 | ^
32a655c1 11
041b39d2 12error: aborting due to previous error
32a655c1 13
0531ce1d 14For more information about this error, try `rustc --explain E0423`.