about summary refs log tree commit diff
path: root/tests/ui/proc-macro/meta-delim.rs
blob: 1afba1fd34349e44c7cfb340add5664b0dce1f36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ aux-build:meta-delim.rs
//@ edition:2018
//@ run-pass

// Tests that we can properly deserialize a macro with strange delimiters
// See https://github.com/rust-lang/rust/pull/73569#issuecomment-650860457

extern crate meta_delim;

fn main() {
    assert_eq!("a bunch of idents", meta_delim::meta_delim!(a bunch of idents));
}