rust/tests/ui/regions/regions-bot.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
201 B
Rust
Raw Normal View History

// 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() {
}