fc6b7c8b38
Long lines were fixed in a very crude way, as I'll be following up with another reformat in a bit.
4 lines
126 B
Rust
4 lines
126 B
Rust
// error-pattern: not all control paths return
|
|
fn force(f: block() -> int) -> int { f() }
|
|
fn main() { log_err force({|| }); }
|