]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/issue-68092-unicode-ident-after-incomplete-expr.rs
Rollup merge of #106701 - ibraheemdev:sync-sender-spin, r=Amanieu
[rust.git] / tests / ui / parser / issue-68092-unicode-ident-after-incomplete-expr.rs
1 macro_rules! x {
2     ($($c:tt)*) => {
3         $($c)รถ* //~ ERROR macro expansion ends with an incomplete expression: expected expression
4     };
5 }
6
7 fn main() {
8     x!(!);
9 }