mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
21 lines
392 B
Rust
21 lines
392 B
Rust
// Check that inherent methods invoked with `<T>::new` style
|
|
// carry their annotations through to NLL in connection with
|
|
// method type parameters.
|
|
|
|
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::<&'a u32>(&v, &v);
|
|
//~^ ERROR
|
|
//~| ERROR
|
|
}
|
|
|
|
fn main() {}
|