Rocket/codegen/tests/compile-fail/bad-ident-argument.rs

10 lines
159 B
Rust
Raw Normal View History

#![feature(plugin)]
2016-09-09 03:38:58 +00:00
#![plugin(rocket_codegen)]
extern crate rocket;
#[get("/")]
fn get(_: usize) -> &'static str { "hi" } //~ ERROR argument
fn main() { }