Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
tests
/
ui
/
explicit-tail-calls
/
return-lifetime-sub.rs
blob: df0982cc02bdc2c92fbb4598da9a56ebd1bf0a0b [
file
] [
log
] [
blame
]
//@ check-pass
#![
expect
(
incomplete_features
)]
#![
feature
(
explicit_tail_calls
)]
fn
_f
<
'a>() -> &'
a
[
u8
]
{
become _g
();
}
fn
_g
()
->
&
'
static
[
u8
]
{
&[
0
,
1
,
2
,
3
]
}
fn
main
()
{}