summary refs log tree commit diff
path: root/src/test/ui/nll/user-annotations/method-ufcs-inherent-3.rs
blob: 24d83c468f4f8cf5b332f5f6fc9f1ad06d597a59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#![feature(nll)]

// 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() {}