menu

Counterexample

import { Counterexample } from "destack:fuzz";

Minimal failing fuzz example.

language/library/src/fuzz/corpus.ds:21:33
1export struct Counterexample<T> {2    value: T;3    sample: Sample;4    shrinks: uint32;5    replay: Replay;6}

Members

value: T

Failing value.

sample: Sample

Sample metadata that produced this value.

shrinks: uint32

Shrink count from the original failing sample.

replay: Replay

Replay input when available.