diff --git a/ices/68091.rs b/ices/68091.rs new file mode 100644 index 00000000..b6dab7af --- /dev/null +++ b/ices/68091.rs @@ -0,0 +1,9 @@ +macro_rules! x { + ($($c:tt)*) => { + $($c)ö* {} + }; +} + +fn main() { + x!(if); +} diff --git a/ices/68092.rs b/ices/68092.rs new file mode 100644 index 00000000..bf98256d --- /dev/null +++ b/ices/68092.rs @@ -0,0 +1,9 @@ +macro_rules! x { + ($($c:tt)*) => { + $($c)ö* + }; +} + +fn main() { + x!(!); +}