nim-drchaos/tests/tsets1.nim
2022-08-25 23:18:38 +03:00

11 lines
172 B
Nim

import drchaos
type
OtherColor = enum
Cyan, Magenta=2, Yellow=4, Black=8
func fuzzTarget(x: set[OtherColor]) =
doAssert x != {Yellow}
defaultMutator(fuzzTarget)