rust/tests/ui/macros/issue-35450.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
102 B
Rust
Raw Normal View History

macro_rules! m { ($($t:tt)*) => { $($t)* } }
2016-08-07 06:09:19 +00:00
fn main() {
m!($t); //~ ERROR expected expression
2016-08-07 06:09:19 +00:00
}