]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/meta-delim.rs
Rollup merge of #106978 - mejrs:mir_build3, r=davidtwco
[rust.git] / tests / ui / proc-macro / meta-delim.rs
1 // aux-build:meta-delim.rs
2 // edition:2018
3 // run-pass
4
5 // Tests that we can properly deserialize a macro with strange delimiters
6 // See https://github.com/rust-lang/rust/pull/73569#issuecomment-650860457
7
8 extern crate meta_delim;
9
10 fn main() {
11     assert_eq!("a bunch of idents", meta_delim::meta_delim!(a bunch of idents));
12 }