diff --git a/std/math/emulated/element_test.go b/std/math/emulated/element_test.go index 140df18f12..96530c1126 100644 --- a/std/math/emulated/element_test.go +++ b/std/math/emulated/element_test.go @@ -1120,6 +1120,10 @@ func (c *ReduceStrictCircuit[T]) Define(api frontend.API) error { for i := range elR.Limbs { api.AssertIsEqual(elR.Limbs[i], c.Expected[i]) } + + // TODO: dummy constraint to have at least two constraints in the circuit. + // Otherwise PLONK setup phase fails. + api.AssertIsEqual(c.Expected[0], elR.Limbs[0]) return nil }