Rocket/macros/tests/compile-fail/ignored_params.rs

8 lines
183 B
Rust
Raw Normal View History

#![feature(plugin)]
#![plugin(rocket_macros)]
#[get("/<name>")] //~ ERROR 'name' is declared
fn get(_: &str) -> &'static str { "hi" } //~ ERROR isn't in the function
fn main() { }