aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/pub_enum.zig
blob: d2e887b12e3b568b2b5c432869cd622ee5b8d609 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const other = @import("pub_enum/other.zig");
const expect = @import("std").testing.expect;

test "pub enum" {
    try pubEnumTest(other.APubEnum.Two);
}
fn pubEnumTest(foo: other.APubEnum) !void {
    try expect(foo == other.APubEnum.Two);
}

test "cast with imported symbol" {
    try expect(@as(other.size_t, 42) == 42);
}