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

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