opaque
opaque {}
declares a new type with an unknown (but non-zero) size and alignment. It can contain declarations the same as structs, unions, and enums.
This is typically used for type safety when interacting with C code that does not expose struct details. Example:
test.zig
const Derp = opaque {};
const Wat = opaque {};
extern fn bar(d: *Derp) void;
fn foo(w: *Wat) callconv(.C) void {
bar(w);
}
test "call foo" {
foo(undefined);
}
$ zig test test.zig
./docgen_tmp/test.zig:6:9: error: expected type '*Derp', found '*Wat'
bar(w);
^
./docgen_tmp/test.zig:6:9: note: pointer type child 'Wat' cannot cast into pointer type child 'Derp'
bar(w);
^