1
Fork 0
rust/src/test/ui/macros/macro-missing-fragment.rs

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

8 lines
119 B
Rust
Raw Normal View History

2015-11-25 21:01:23 +01:00
macro_rules! m {
( $( any_token $field_rust_type )* ) => {}; //~ ERROR missing fragment
}
fn main() {
m!();
}