mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-02 15:52:41 +00:00
11 lines
272 B
Rust
11 lines
272 B
Rust
#![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
|
|
}
|