Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
regions
/
regions-bot.rs
blob: f8fb995c83e2e72ccfa438702648183132aa6dbb [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{
}