Rocket/codegen/tests/compile-fail/route-bad-method.rs

14 lines
249 B
Rust
Raw Normal View History

#![feature(plugin, decl_macro)]
2016-09-29 03:39:14 +00:00
#![plugin(rocket_codegen)]
extern crate rocket;
#[route(FIX, "/hello")] //~ ERROR is not a valid HTTP method
2016-09-29 03:39:14 +00:00
//~^ ERROR valid HTTP method
fn get() -> &'static str { "hi" }
fn main() {
let _ = routes![get];
}