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

32 lines
735 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("/<id><")] //~ ERROR malformed
fn get1(id: usize) -> &'static str { "hi" }
#[get("/<<<<id><")] //~ ERROR malformed
fn get2(id: usize) -> &'static str { "hi" }
#[get("/<!>")] //~ ERROR identifiers
2016-09-29 02:38:11 +00:00
fn get3() -> &'static str { "hi" }
2017-08-03 01:44:31 +00:00
#[get("/<_>")] //~ ERROR named
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 malformed
2016-09-29 02:38:11 +00:00
fn get6() -> &'static str { "hi" }
#[get("/<name>:<id>")] //~ ERROR identifiers
fn get7() -> &'static str { "hi" }
#[get("/<>")] //~ ERROR empty
fn get8() -> &'static str { "hi" }
fn main() { }