zig/test/cases/pub_enum/index.zig

14 lines
287 B
Zig
Raw Normal View History

const other = @import("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);
}