mirror of
https://github.com/rwf2/Rocket.git
synced 2024-12-28 13:22:38 +00:00
14 lines
221 B
Rust
14 lines
221 B
Rust
#![feature(plugin)]
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate rocket;
|
|
|
|
#[get] //~ ERROR incorrect use of attribute
|
|
//~^ ERROR malformed attribute
|
|
fn get() -> &'static str { "hi" }
|
|
|
|
fn main() {
|
|
let _ = routes![get];
|
|
}
|
|
|