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

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

7 lines
149 B
Rust
Raw Normal View History

2017-05-12 09:53:58 +02:00
#![allow(unused_macros)]
2015-01-18 17:18:42 +01:00
macro_rules! test { ($wrong:t_ty ..) => () }
//~^ ERROR: invalid fragment specifier `t_ty`
2015-01-18 17:18:42 +01:00
fn main() {}