aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/issue_794/main.zig
blob: 04b95de5b5fb68e8469fe37e5c9ebd6e6f845da3 (plain)
1
2
3
4
5
6
7
const c = @cImport(@cInclude("foo.h"));
const std = @import("std");
const testing = std.testing;

test "c import" {
    try comptime testing.expect(c.NUMBER == 1234);
}