mirror of
https://github.com/arnaucube/circom.git
synced 2026-02-07 03:06:42 +01:00
8 lines
125 B
Plaintext
8 lines
125 B
Plaintext
template A() {
|
|
signal output out;
|
|
|
|
out = 3; // This is an error that compile should detect
|
|
}
|
|
|
|
component main = A();
|