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

8 lines
188 B
Rust

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