1const std = @import("std");
2const expectEqualSlices = std.testing.expectEqualSlices;
3
4const Small2 = union(enum) {
5 a: i32,
6 b: bool,
7 c: u8,
8};
9test "@tagName" {
10 try expectEqualSlices(u8, "a", @tagName(Small2.a));
11}
12
13// test