Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
torture
/
lifetime1.rs
blob: 24a74ef7f3e18981100d8344cd509cb9fb75a936 [
file
]
#![
feature
(
no_core
)]
#![
no_core
]
fn
foo
<
'a>(t: &'
a str
)
->
&
'
a str
{
t
}
fn
main
()
{
foo
(
"hello world"
);
}