rust/src/test/ui/nll/user-annotations/method-ufcs-inherent-4.rs

21 lines
380 B
Rust
Raw Normal View History

2018-10-15 05:14:08 -05:00
#![feature(nll)]
// 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);
}
fn main() {}