aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/simple/issue_12471/main.zig
blob: 08be1fd4713563e0e6051739aed33630f8c65501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
const c = @cImport({
    @cDefine("FOO", "FOO");
    @cDefine("BAR", "FOO");

    @cDefine("BAZ", "QUX");
    @cDefine("QUX", "QUX");
});

pub fn main() u8 {
    _ = c;
    return 0;
}