Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
symbol-names
/
auxiliary
/
aux-9188.rs
blob: 3bc5697a1a68906c4c5ae866de9f542c843e8409 [
file
] [
log
] [
blame
]
pub
fn
foo
<
T
>()
->
&
'
static
isize
{
if
false
{
static
a
:
isize
=
4
;
return
&
a
;
}
else
{
static
a
:
isize
=
5
;
return
&
a
;
}
}
pub
fn
bar
()
->
&
'
static
isize
{
foo
::<
isize
>()
}