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