rust/tests/ui/lifetimes/issue-34979.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
160 B
Rust
Raw Normal View History

2020-05-06 17:13:51 +00:00
trait Foo {}
impl<'a, T> Foo for &'a T {}
struct Ctx<'a>(&'a ())
where
&'a (): Foo, //~ ERROR: type annotations needed
&'static (): Foo;
fn main() {}