diff --git a/tfhe/src/high_level_api/array/tests/mod.rs b/tfhe/src/high_level_api/array/tests/mod.rs index 394fffe2aa..6e1a9b57b3 100644 --- a/tfhe/src/high_level_api/array/tests/mod.rs +++ b/tfhe/src/high_level_api/array/tests/mod.rs @@ -108,12 +108,13 @@ where + FheDecrypt> + BitOr + for<'a> BitOr<&'a Array, Output = Array>, - for<'a> &'a Array: BitOr + BitOr<&'a Array, Output = Array>, + for<'a> &'a Array: BitOr + + BitOr<&'a Array, Output = Array> + + BitOr, Output = Array>, // Bounds for slicing tests for<'a, 'b> Array::Slice<'a>: BitOr, Output = Array>, // for the 2 tested slice/array ops for<'a, 'b> Array::Slice<'a>: BitOr<&'b Array, Output = Array>, - for<'a, 'b> &'b Array: BitOr, Output = Array>, { let num_values = 5; let clear_lhs = draw_random_values::(num_values);