9 lines
82 B
Rust
9 lines
82 B
Rust
|
|
//@ check-pass
|
||
|
|
|
||
|
|
#![feature(decl_macro)]
|
||
|
|
macro foo {
|
||
|
|
() => {},
|
||
|
|
}
|
||
|
|
|
||
|
|
fn main() {}
|