1 2 3 4 5 6 7 8 9 10 11 12
#[macro_use] extern crate rocket; #[get("/<_>")] fn i0() {} #[get("/c?<_>")] fn i1() {} #[post("/d", data = "<_>")] fn i2() {} fn main() { }