rust/tests/ui/span/issue-34264.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
323 B
Rust
Raw Normal View History

2017-11-20 12:13:27 +00:00
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
2017-11-20 12:13:27 +00:00
bar("", ""); //~ ERROR mismatched types
bar(1, 2);
bar(1, 2, 3); //~ ERROR function takes
}