2016-09-09 00:09:35 +00:00
|
|
|
#![feature(plugin)]
|
2016-09-09 03:38:58 +00:00
|
|
|
#![plugin(rocket_codegen)]
|
2016-09-09 00:09:35 +00:00
|
|
|
|
|
|
|
#[get("/<name>")] //~ ERROR 'name' is declared
|
2017-04-14 07:43:24 +00:00
|
|
|
fn get(other: usize) -> &'static str { "hi" } //~ ERROR isn't in the function
|
2016-09-09 00:09:35 +00:00
|
|
|
|
2016-09-29 03:39:14 +00:00
|
|
|
#[get("/a?<r>")] //~ ERROR 'r' is declared
|
|
|
|
fn get1() -> &'static str { "hi" } //~ ERROR isn't in the function
|
|
|
|
|
2016-10-25 14:42:10 +00:00
|
|
|
#[post("/a", data = "<test>")] //~ ERROR 'test' is declared
|
|
|
|
fn post() -> &'static str { "hi" } //~ ERROR isn't in the function
|
2016-09-29 03:39:14 +00:00
|
|
|
|
2016-09-09 00:09:35 +00:00
|
|
|
fn main() { }
|