blob: 4a83c33239c191529122e3b7727ba3bc3ca13654 [file] [log] [blame]
#![feature(nll)]
struct Bar;
struct Foo<'s> {
bar: &'s mut Bar,
}
impl Foo<'_> {
fn new(bar: &mut Bar) -> Self {
Foo { bar } //~ ERROR unsatisfied lifetime constraints
}
}
fn main() { }