mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 21:32:03 +00:00
12 lines
323 B
Rust
12 lines
323 B
Rust
fn foo(Option<i32>, String) {} //~ ERROR expected one of
|
|
//~^ ERROR expected one of
|
|
fn bar(x, y: usize) {} //~ ERROR expected one of
|
|
|
|
fn main() {
|
|
foo(Some(42), 2);
|
|
foo(Some(42), 2, ""); //~ ERROR function takes
|
|
bar("", ""); //~ ERROR mismatched types
|
|
bar(1, 2);
|
|
bar(1, 2, 3); //~ ERROR function takes
|
|
}
|