1 2 3 4 5 6 7 8 9
//! Test that controller macro without arguments fails use elif_http_derive::controller; // This should fail - controller macro requires a path argument #[controller] pub struct BadController; fn main() {}