]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/obsolete_in_place.rs
Merge commit '54a20a02ecd0e1352a871aa0990bcc8b8b03173e' into clippyup
[rust.git] / src / tools / rustfmt / tests / target / obsolete_in_place.rs
1 // #2953
2
3 macro_rules! demo {
4     ($a:ident <- $b:expr) => {};
5 }
6
7 fn main() {
8     demo!(i <- 0);
9 }