Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
unboxed-closures
/
unboxed-closures-static-call-fn-once.rs
blob: 6103dbd99590a5da90dd5d93763c43e55989042b [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ pretty-expanded FIXME #23616
fn
main
()
{
let
onetime
=
|
x
|
x
;
onetime
(
0
);
}