mirror of
https://github.com/status-im/nim-drchaos.git
synced 2025-02-19 22:28:15 +00:00
11 lines
172 B
Nim
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)
|