Files
ark-r1cs-std/r1cs-std/src/instantiated/ed_on_bn254/fields.rs
2020-09-11 16:22:04 -07:00

9 lines
168 B
Rust

use crate::fields::fp::FpVar;
pub type FqVar = FpVar<algebra::ed_on_bn254::Fq>;
#[test]
fn test() {
crate::fields::tests::field_test::<_, _, FqVar>().unwrap();
}