Rocket/codegen/tests/compile-fail/decorate-enum.rs

13 lines
214 B
Rust
Raw Normal View History

#![feature(plugin, decl_macro)]
2016-09-29 03:39:14 +00:00
#![plugin(rocket_codegen)]
extern crate rocket;
#[get("")] //~ ERROR can only be used on functions
enum B { } //~ ERROR but was applied
fn main() {
let _ = routes![get];
}