mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-09 13:33:43 +00:00
8 lines
127 B
Rust
8 lines
127 B
Rust
![]() |
// xfail-stage0
|
||
|
// error-pattern:expected fn() but found fn(int)
|
||
|
|
||
|
fn main() {
|
||
|
fn f() {}
|
||
|
fn g(int i) {}
|
||
|
auto x = f == g;
|
||
|
}
|