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