about summary refs log tree commit diff
path: root/tests/ui/lifetimes/elided-lint-in-mod.rs
blob: afe85cb607d40f2f0923b9682cb931c1c8dbc358 (plain)
1
2
3
4
5
6
7
8
9
10
11
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() {}