summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-109396.rs
blob: b6c464d45a2e30ad0c5ffb583178952580d58b9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    {
        let mut mutex = std::mem::zeroed(
            //~^ ERROR this function takes 0 arguments but 4 arguments were supplied
            file.as_raw_fd(),
            //~^ ERROR expected value, found macro `file`
            0,
            0,
            0,
        );
    }
}