actix-web/actix-web-codegen/tests/trybuild/route-malformed-path-fail.rs

8 lines
123 B
Rust

use actix_web_codegen::*;
#[get("/one/{", other)]
async fn one() -> String {
"Hello World!".to_owned()
}
fn main() {}