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 02:53:58 -05:00
#![allow(unused_macros)]
2015-01-18 10:18:42 -06:00
macro_rules! test { ($wrong:t_ty ..) => () }
//~^ ERROR: invalid fragment specifier `t_ty`
2015-01-18 10:18:42 -06:00
fn main() {}