mirror of
https://github.com/rwf2/Rocket.git
synced 2024-12-28 13:22:38 +00:00
13 lines
226 B
Rust
13 lines
226 B
Rust
#![feature(plugin)]
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate rocket;
|
|
|
|
#[get(path = "hello", unknown = 123)] //~ ERROR 'unknown' is not a known param
|
|
fn get() -> &'static str { "hi" }
|
|
|
|
fn main() {
|
|
let _ = routes![get];
|
|
}
|
|
|