rust/tests/target/obsolete_in_place.rs

10 lines
99 B
Rust
Raw Normal View History

2018-08-25 23:19:44 -05:00
// #2953
macro_rules! demo {
($a:ident <- $b:expr) => {};
}
fn main() {
demo!(i <- 0);
}