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