mirror of
https://github.com/arnaucube/ark-r1cs-std.git
synced 2026-01-22 13:11:27 +01:00
9 lines
168 B
Rust
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();
|
|
}
|