]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-68091-unicode-ident-after-if.stderr
New upstream version 1.57.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-68091-unicode-ident-after-if.stderr
1 error: missing condition for `if` expression
2 --> $DIR/issue-68091-unicode-ident-after-if.rs:3:14
3 |
4 LL | $($c)ö* {}
5 | ^ expected if condition here
6
7 error[E0308]: mismatched types
8 --> $DIR/issue-68091-unicode-ident-after-if.rs:3:17
9 |
10 LL | $($c)ö* {}
11 | ^^ expected `bool`, found `()`
12 ...
13 LL | x!(if);
14 | ------ in this macro invocation
15 |
16 = note: this error originates in the macro `x` (in Nightly builds, run with -Z macro-backtrace for more info)
17
18 error: aborting due to 2 previous errors
19
20 For more information about this error, try `rustc --explain E0308`.