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