master
1const c = @cImport(@cInclude("foo.h"));
2const std = @import("std");
3const testing = std.testing;
4
5test "c import" {
6    try comptime testing.expect(c.NUMBER == 1234);
7}