aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/conflicting_externs/b.zig
blob: 9f4636dce8f714d34b55bac1e58d11e82d3cbfa4 (plain)
1
2
3
4
5
6
pub const A = extern struct {
    field: c_int,
};
export fn issue529(a: ?*A) void {
    _ = a;
}