Rocket/core/codegen_next/tests/compile-fail/catchers.rs

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
}