mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-08 10:42:37 +00:00
10 lines
159 B
Rust
10 lines
159 B
Rust
#![feature(plugin)]
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate rocket;
|
|
|
|
#[get("/")]
|
|
fn get(_: usize) -> &'static str { "hi" } //~ ERROR argument
|
|
|
|
fn main() { }
|