zig/test/cases/enum_with_members.zig

30 lines
662 B
Zig
Raw Normal View History

2017-01-05 00:57:48 -08:00
const assert = @import("std").debug.assert;
const str = @import("std").str;
const io = @import("std").io;
2016-12-25 22:37:33 -08:00
const ET = enum {
SINT: i32,
UINT: u32,
pub fn print(a: &ET, buf: []u8) -> %usize {
return switch (*a) {
2017-01-05 00:57:48 -08:00
ET.SINT => |x| { io.bufPrintInt(i32, buf, x) },
ET.UINT => |x| { io.bufPrintInt(u32, buf, x) },
2016-12-25 22:37:33 -08:00
}
}
};
fn enumWithMembers() {
@setFnTest(this);
const a = ET.SINT { -42 };
const b = ET.UINT { 42 };
var buf: [20]u8 = undefined;
assert(%%a.print(buf) == 3);
2017-01-05 00:57:48 -08:00
assert(str.eql(buf[0...3], "-42"));
2016-12-25 22:37:33 -08:00
assert(%%b.print(buf) == 2);
2017-01-05 00:57:48 -08:00
assert(str.eql(buf[0...2], "42"));
2016-12-25 22:37:33 -08:00
}