mirror of
https://github.com/arnaucube/circom.git
synced 2026-02-07 03:06:42 +01:00
13 lines
101 B
Plaintext
13 lines
101 B
Plaintext
|
|
|
|
|
|
template A() {
|
|
signal a;
|
|
}
|
|
|
|
template B() {
|
|
component a[2] = A();
|
|
}
|
|
|
|
component main = B();
|