Rocket/codegen/tests/compile-fail/decorate-struct.rs
2016-09-28 20:39:14 -07:00

12 lines
199 B
Rust

#![feature(plugin)]
#![plugin(rocket_codegen)]
extern crate rocket;
#[get("")] //~ ERROR can only be used on functions
struct A; //~ ERROR but was applied
fn main() {
let _ = routes![get];
}