rust/src/test/run-pass/regions-bot.rs

8 lines
155 B
Rust

// A very limited test of the "bottom" region
fn produce_static<T>() -> &static.T { fail; }
fn foo<T>(x: &T) -> &uint { produce_static() }
fn main() {
}