Files
rust/tests/ui/lifetimes/elided-lint-in-mod.rs
2024-07-30 16:42:53 -04:00

12 lines
201 B
Rust

struct Foo<'a>(&'a ());
fn test(_: Foo) {}
#[deny(elided_lifetimes_in_paths)]
mod w {
fn test2(_: super::Foo) {}
//~^ ERROR hidden lifetime parameters in types are deprecated
}
fn main() {}