rocket_codegen 0.4.2

Procedural macros for the Rocket web framework.
Documentation
1
2
3
4
5
6
7
8
9
10
#![feature(proc_macro_hygiene)]

#[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
}