Add a test for #2953

This commit is contained in:
Seiichi Uchida 2018-08-26 13:19:44 +09:00
parent ca19c9a35a
commit e5a41e5682

View file

@ -0,0 +1,9 @@
// #2953
macro_rules! demo {
($a:ident <- $b:expr) => {};
}
fn main() {
demo!(i <- 0);
}