mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-01 07:12:41 +00:00
12 lines
203 B
Rust
12 lines
203 B
Rust
#![feature(plugin)]
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate rocket;
|
|
|
|
#[get("")] //~ ERROR can only be used on functions
|
|
trait C { } //~ ERROR but was applied
|
|
|
|
fn main() {
|
|
let _ = routes![get];
|
|
}
|