Rocket/codegen/tests/compile-fail/malformed-param-list.rs

26 lines
604 B
Rust
Raw Normal View History

#![feature(plugin)]
2016-09-09 03:38:58 +00:00
#![plugin(rocket_codegen)]
#[get("/><")] //~ ERROR malformed
fn get() -> &'static str { "hi" }
#[get("/<name><")] //~ ERROR malformed
2016-09-29 02:38:11 +00:00
fn get1(name: &str) -> &'static str { "hi" }
#[get("/<<<<name><")] //~ ERROR identifiers
2016-09-29 02:38:11 +00:00
fn get2(name: &str) -> &'static str { "hi" }
#[get("/<!>")] //~ ERROR identifiers
2016-09-29 02:38:11 +00:00
fn get3() -> &'static str { "hi" }
#[get("/<_>")] //~ ERROR ignored
2016-09-29 02:38:11 +00:00
fn get4() -> &'static str { "hi" }
#[get("/<1>")] //~ ERROR identifiers
2016-09-29 02:38:11 +00:00
fn get5() -> &'static str { "hi" }
#[get("/<>name><")] //~ ERROR cannot be empty
2016-09-29 02:38:11 +00:00
fn get6() -> &'static str { "hi" }
fn main() { }