mirror of https://github.com/rwf2/Rocket.git
9 lines
239 B
Rust
9 lines
239 B
Rust
|
#[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
|
||
|
}
|