blob: 252486dd92192011856e5bd884797e5f4f7ada08 [file] [log] [blame]
trait Foo {}
impl<'a, T> Foo for &'a T {}
struct Ctx<'a>(&'a ())
where
&'a (): Foo, //~ ERROR: type annotations needed
&'static (): Foo;
fn main() {}