mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-02 15:52:41 +00:00
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
|
|
}
|