mirror of https://github.com/rwf2/Rocket.git
13 lines
202 B
Rust
13 lines
202 B
Rust
|
#![feature(plugin)]
|
||
|
#![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];
|
||
|
}
|
||
|
|