Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
regions
/
owned-implies-static.rs
blob: d97e2f2d239b84a2aac9675e9cb76f66c9c08678 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ pretty-expanded FIXME #23616
fn
f
<
T
:
'
static
>(
_x
:
T
)
{}
pub
fn
main
()
{
f
(
Box
::
new
(
5
));
}