2011-07-25 18:57:27 -05:00
|
|
|
// error-pattern: mismatched types
|
|
|
|
|
|
|
|
// Make sure that fn-to-block coercion isn't incorrectly lifted over
|
|
|
|
// other tycons.
|
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
fn coerce(b: &block()) -> fn() {
|
|
|
|
fn lol(f: &fn(&block()) -> fn(), g: &block()) -> fn() { ret f(g); }
|
|
|
|
fn fn_id(f: &fn()) -> fn() { ret f }
|
2011-07-25 18:57:27 -05:00
|
|
|
ret lol(fn_id, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
fn main() { let i = 8; let f = coerce(block () { log_err i; }); f(); }
|