mirror of https://github.com/rwf2/Rocket.git
9 lines
152 B
Rust
9 lines
152 B
Rust
|
#![feature(plugin, decl_macro, proc_macro_non_items)]
|
||
|
|
||
|
#[macro_use] extern crate rocket;
|
||
|
|
||
|
fn main() {
|
||
|
let _ = catchers![a b]; //~ ERROR expected
|
||
|
}
|
||
|
|