Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
impl-trait
/
xcrate.rs
blob: 62921fcb0c659ab43e3148470fa577ccdd6c647c [
file
]
//@ run-pass
//@ aux-build:xcrate.rs
extern
crate xcrate
;
fn
main
()
{
// NOTE line below commented out due to issue #45994
// assert_eq!(xcrate::fourway_add(1)(2)(3)(4), 10);
xcrate
::
return_closure_accessing_internal_fn
()();
}