master
1const std = @import("std");
2const c = @cImport({
3    @cInclude("foo.h");
4});
5comptime {
6    std.debug.assert(c.foo_value == 42);
7}
8pub fn main() void {}