Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
5f6fa960c254dfda8ba1d5dc2fb281b6908d8005
/
.
/
tests
/
ui
/
issues
/
issue-26217.rs
blob: 422625e73c161c88592962706bcbabe6227c9212 [
file
]
fn
foo
<
T
>()
where
for
<
'a> T: '
a
{}
fn
bar
<
'
a
>()
{
foo
::<&
'
a i32
>();
//~^ ERROR lifetime may not live long enough
}
fn
main
()
{
bar
();
}