Rocket/codegen/tests/compile-fail/absolute-mount-paths.rs

14 lines
286 B
Rust
Raw Normal View History

#![feature(plugin)]
#![plugin(rocket_codegen)]
#[get("a")] //~ ERROR absolute
fn get() -> &'static str { "hi" }
#[get("")] //~ ERROR absolute
fn get1(name: &str) -> &'static str { "hi" }
#[get("a/b/c")] //~ ERROR absolute
fn get2(name: &str) -> &'static str { "hi" }
fn main() { }