summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-12187-2.rs
blob: 080a6206be76df188986bb11f8c12b367e2f7ebf (plain)
1
2
3
4
5
6
7
8
fn new<'r, T>() -> &'r T {
    panic!()
}

fn main() {
    let &v = new();
    //~^ ERROR type annotations needed
}