2011-07-25 18:57:27 -05:00
|
|
|
// Make sure that fn-to-block coercion isn't incorrectly lifted over
|
|
|
|
// other tycons.
|
|
|
|
|
2012-01-18 20:10:51 -06:00
|
|
|
fn coerce(b: fn()) -> native fn() {
|
2012-01-23 16:59:00 -06:00
|
|
|
fn lol(f: native fn(fn()) -> native fn(),
|
2012-01-18 20:10:51 -06:00
|
|
|
g: fn()) -> native fn() { ret f(g); }
|
|
|
|
fn fn_id(f: native fn()) -> native fn() { ret f }
|
2011-07-25 18:57:27 -05:00
|
|
|
ret lol(fn_id, b);
|
2012-06-26 18:18:37 -05:00
|
|
|
//!^ ERROR mismatched types: expected `extern fn(fn()) -> extern fn()`
|
2011-07-25 18:57:27 -05:00
|
|
|
}
|
|
|
|
|
2011-12-22 16:42:52 -06:00
|
|
|
fn main() {
|
|
|
|
let i = 8;
|
2012-01-18 20:10:51 -06:00
|
|
|
let f = coerce({|| log(error, i); });
|
|
|
|
f();
|
|
|
|
}
|