Functions like ```rust #[mry::mry] fn test<'a>(arg: &'a str) -> &'a str { arg } ``` causes `error[E0261]: use of undeclared lifetime name 'a`, and removing `#[mry::mry]` fixes the error. Is this a bug or there's some additional syntax for this case?
Functions like
causes
error[E0261]: use of undeclared lifetime name 'a, and removing#[mry::mry]fixes the error.Is this a bug or there's some additional syntax for this case?