mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-22 09:22:03 +00:00
084481a84e
This is a breaking change. All Rocket applications using code generation must now additionally declare usage of the 'decl_macro' feature.
19 lines
358 B
Rust
19 lines
358 B
Rust
#![feature(plugin, decl_macro)]
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate rocket;
|
|
|
|
use rocket::{Error, Request};
|
|
|
|
#[error(404)]
|
|
fn err_a(_a: Error, _b: Request, _c: Error) -> &'static str { "hi" }
|
|
//~^ ERROR: can have at most 2
|
|
|
|
#[error(404)]
|
|
fn err_b(_a: (isize, usize)) -> &'static str { "hi" }
|
|
//~^ ERROR: unexpected error handler argument
|
|
|
|
fn main() {
|
|
}
|
|
|