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