zig/test/cases/pub_enum/index.zig

14 lines
302 B
Zig
Raw Normal View History

2016-12-25 23:49:30 -08:00
const other = @import("cases/pub_enum/other.zig");
2017-01-05 00:57:48 -08:00
const assert = @import("std").debug.assert;
2016-12-25 23:42:31 -08:00
test "pubEnum" {
2016-12-25 23:42:31 -08:00
pubEnumTest(other.APubEnum.Two);
}
fn pubEnumTest(foo: other.APubEnum) {
assert(foo == other.APubEnum.Two);
}
test "castWithImportedSymbol" {
2016-12-25 23:42:31 -08:00
assert(other.size_t(42) == 42);
}