mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 03:03:40 +00:00
36 lines
905 B
Rust
36 lines
905 B
Rust
fn empty() {}
|
|
fn one_arg(_a: i32) {}
|
|
fn two_arg_same(_a: i32, _b: i32) {}
|
|
fn two_arg_diff(_a: i32, _b: &str) {}
|
|
|
|
fn main() {
|
|
empty(""); //~ ERROR function takes
|
|
|
|
one_arg(1, 1); //~ ERROR function takes
|
|
one_arg(1, ""); //~ ERROR function takes
|
|
one_arg(1, "", 1.0); //~ ERROR function takes
|
|
|
|
two_arg_same(1, 1, 1); //~ ERROR function takes
|
|
two_arg_same(1, 1, 1.0); //~ ERROR function takes
|
|
|
|
two_arg_diff(1, 1, ""); //~ ERROR function takes
|
|
two_arg_diff(1, "", ""); //~ ERROR function takes
|
|
two_arg_diff(1, 1, "", ""); //~ ERROR function takes
|
|
two_arg_diff(1, "", 1, ""); //~ ERROR function takes
|
|
|
|
// Check with weird spacing and newlines
|
|
two_arg_same(1, 1, ""); //~ ERROR function takes
|
|
two_arg_diff(1, 1, ""); //~ ERROR function takes
|
|
two_arg_same( //~ ERROR function takes
|
|
1,
|
|
1,
|
|
""
|
|
);
|
|
|
|
two_arg_diff( //~ ERROR function takes
|
|
1,
|
|
1,
|
|
""
|
|
);
|
|
}
|