diff --git a/src/lib.rs b/src/lib.rs index c12fc72..e33b3db 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -91,7 +91,7 @@ impl fmt::Display for SynthesisError { } pub trait ConstraintSystem: Sized { - type Variable; + type Variable: Sized + Copy + Clone; /// Represents the type of the "root" of this constraint system /// so that nested namespaces can minimize indirection. @@ -336,7 +336,7 @@ impl<'cs, E: Engine, CS: ConstraintSystem> ConstraintSystem for &'cs mut C fn test_cs() { use pairing::bls12_381::{Bls12, Fr}; - #[derive(PartialEq)] + #[derive(PartialEq, Copy, Clone)] enum Var { Input(usize), Aux(usize)