// run-pass #![allow(dead_code)] // A very limited test of the "bottom" region fn produce_static() -> &'static T { panic!(); } fn foo(_x: &T) -> &usize { produce_static() } pub fn main() { }