Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
issues
/
issue-7268.rs
blob: a3bc1bc344626ce7d1fbf44017ecf0959e0674c7 [
file
] [
log
] [
blame
]
//@ check-pass
#![
allow
(
dead_code
)]
fn
foo
<
T
:
'
static
>(
_
:
T
)
{}
fn
bar
<
T
>(
x
:
&
'
static
T
)
{
foo
(
x
);
}
fn
main
()
{}