blob: ff86906962f97906e6d97387120a3e8c319dade5 [file] [log] [blame]
// error-pattern: Unsatisfied precondition constraint
// xfail-stage0
fn force(&block() f) { f(); }
fn main() {
let int x;
force(block() { log_err x; });
}