summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lifetimes/issue-34979.rs
blob: 252486dd92192011856e5bd884797e5f4f7ada08 (plain)
1
2
3
4
5
6
7
8
9
trait Foo {}
impl<'a, T> Foo for &'a T {}

struct Ctx<'a>(&'a ())
where
    &'a (): Foo, //~ ERROR: type annotations needed
    &'static (): Foo;

fn main() {}