summaryrefslogtreecommitdiffstats
path: root/tests/ui/regions/regions-bot.rs
blob: 580162936401f694d89d758f67b13d096289b471 (plain)
1
2
3
4
5
6
7
8
9
10
11
// run-pass
#![allow(dead_code)]
// A very limited test of the "bottom" region


fn produce_static<T>() -> &'static T { panic!(); }

fn foo<T>(_x: &T) -> &usize { produce_static() }

pub fn main() {
}