1. 1/2 test "switch simple"... OK
    2. 2/2 test "switch inside function"... OK
    3. All 2 tests passed.

    switch can be used to capture the field values of a Tagged union. Modifications to the field values can be done by placing a * before the capture variable name, turning it into a pointer.

    1. $ zig test test.zig
    2. All 1 tests passed.

    See also:

    test.zig

    1. $ zig test test.zig
    2. ./docgen_tmp/test.zig:9:5: error: enumeration value 'Color.off' not handled in switch
    3. ./docgen_tmp/test.zig:7:29: note: referenced here
    4. test "exhaustive switching" {
    5. ^

    test.zig

    1. $ zig test test.zig
    2. 1/1 test "enum literals with switch"... OK