blob: 7ddb1336082ab6ad5cad51839767844dafdb57ed [file] [log] [blame] [edit]
// Check that inherent methods invoked with `<T>::new` style
// carry their annotations through to NLL.
struct A<'a> { x: &'a u32 }
impl<'a> A<'a> {
fn new<'b, T>(x: &'a u32, y: T) -> Self {
Self { x }
}
}
fn foo<'a>() {
let v = 22;
let x = <A<'a>>::new(&v, 22);
//~^ ERROR
}
fn main() {}