8 lines
155 B
Rust
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() {
|
||
|
}
|