2018-09-06 14:41:12 +02:00
|
|
|
// run-pass
|
|
|
|
|
2016-11-28 05:09:28 +02:00
|
|
|
// aux-build:xcrate.rs
|
|
|
|
|
|
|
|
extern crate xcrate;
|
|
|
|
|
|
|
|
fn main() {
|
2017-11-14 19:57:09 -05:00
|
|
|
// NOTE line below commeted out due to issue #45994
|
|
|
|
// assert_eq!(xcrate::fourway_add(1)(2)(3)(4), 10);
|
2017-08-14 12:04:52 +02:00
|
|
|
xcrate::return_closure_accessing_internal_fn()();
|
2016-11-28 05:09:28 +02:00
|
|
|
}
|