Rocket/core/codegen/tests/ui-fail/bad-ignored-segments.rs
Sergio Benitez a6f5a63535 Add tests for ignored parameters '<_>'.
Co-authored-by: timokoesters <timo@koesters.xyz>
2020-10-30 00:47:41 -07:00

13 lines
146 B
Rust

#[macro_use] extern crate rocket;
#[get("/<_>")]
fn i0() {}
#[get("/c?<_>")]
fn i1() {}
#[post("/d", data = "<_>")]
fn i2() {}
fn main() { }