const std = @import("std"); const expect = std.testing.expect; const Color = enum { auto, off, on, }; test "enum literals with switch" { const color = Color.off; const result = switch (color) { .auto => false, .on => false, .off => true, }; try expect(result); } // test