Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
closures
/
nested-closure-call.rs
blob: 9d0860167a1ac569ff52ad15c44f2c65095fe545 [
file
] [
log
] [
blame
] [
edit
]
//! regression test for https://github.com/rust-lang/rust/issues/24779
//@ run-pass
fn
main
()
{
assert_eq
!((||
||
42
)()(),
42
);
}