rust/tests/ui/parser/issue-68091-unicode-ident-after-if.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
151 B
Rust
Raw Normal View History

2020-01-10 13:22:57 -06:00
macro_rules! x {
($($c:tt)*) => {
$($c)ö* {}
//~^ ERROR missing condition for `if` expression
};
2020-01-10 13:22:57 -06:00
}
fn main() {
x!(if);
}