2018-09-06 07:41:12 -05:00
|
|
|
// run-pass
|
|
|
|
|
2016-11-27 21:09:28 -06:00
|
|
|
// aux-build:xcrate.rs
|
|
|
|
|
|
|
|
extern crate xcrate;
|
|
|
|
|
|
|
|
fn main() {
|
2022-03-30 00:39:38 -05:00
|
|
|
// NOTE line below commented out due to issue #45994
|
2017-11-14 18:57:09 -06:00
|
|
|
// assert_eq!(xcrate::fourway_add(1)(2)(3)(4), 10);
|
2017-08-14 05:04:52 -05:00
|
|
|
xcrate::return_closure_accessing_internal_fn()();
|
2016-11-27 21:09:28 -06:00
|
|
|
}
|