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 14:01:23 -06:00
macro_rules! m {
( $( any_token $field_rust_type )* ) => {}; //~ ERROR missing fragment
}
fn main() {
m!();
}