2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2012-04-05 20:59:36 -07:00
|
|
|
// A very limited test of the "bottom" region
|
|
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2014-10-09 15:17:22 -04:00
|
|
|
fn produce_static<T>() -> &'static T { panic!(); }
|
2012-04-05 20:59:36 -07:00
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
fn foo<T>(_x: &T) -> &usize { produce_static() }
|
2012-04-05 20:59:36 -07:00
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2013-01-31 17:51:01 -08:00
|
|
|
}
|