mirror of https://github.com/rwf2/Rocket.git
13 lines
226 B
Rust
13 lines
226 B
Rust
|
#![feature(plugin)]
|
||
|
#![plugin(rocket_codegen)]
|
||
|
|
||
|
extern crate rocket;
|
||
|
|
||
|
use rocket::Data;
|
||
|
|
||
|
#[get("/", data = "<something>")]
|
||
|
//~^ ERROR payload supporting methods
|
||
|
fn get(something: Data) -> &'static str { "hi" }
|
||
|
|
||
|
fn main() { }
|