Rocket/core/codegen_next/tests/ui-fail/routes.rs

9 lines
154 B
Rust
Raw Normal View History

#![feature(plugin, decl_macro, proc_macro_non_items)]
#[macro_use] extern crate rocket;
fn main() {
let _ = routes![a b];
//~^ ERROR expected
}