summaryrefslogtreecommitdiffstats
path: root/src/test/ui/span/issue-34264.rs
blob: 5b8fc71384efe05659497f6a2eae3d93d6a6681d (plain)
1
2
3
4
5
6
7
8
9
10
11
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 this function takes
    bar("", ""); //~ ERROR mismatched types
    bar(1, 2);
    bar(1, 2, 3); //~ ERROR this function takes
}