c2fe7b6398
This reduces ++/&& spam in the output to a bare minimum. Issue #1507
7 lines
135 B
Rust
7 lines
135 B
Rust
fn main() {
|
|
fn f() { }
|
|
fn g(i: int) { }
|
|
let x = f == g;
|
|
//!^ ERROR expected `native fn()` but found `native fn(int)`
|
|
}
|