summaryrefslogtreecommitdiffstats
path: root/tests/ui/main-wrong-type.rs
blob: 31deba72af4b3eb404ab07390d39d25bd353962a (plain)
1
2
3
4
5
6
7
8
struct S {
    x: isize,
    y: isize,
}

fn main(foo: S) {
//~^ ERROR: `main` function has wrong type [E0580]
}