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 _ = catchers![a b]; //~ ERROR expected
    let _ = catchers![];
    let _ = catchers![a::, ]; //~ ERROR expected identifier
    let _ = catchers![a::]; //~ ERROR expected identifier
}