mirror of
https://github.com/arnaucube/go-iden3-crypto.git
synced 2026-02-07 03:26:39 +01:00
bffc894c6266422caf6e1c6d8f6d746bdecf00f5
To make sure 32 bits arch is being tested, try the following test which should
fail in 32 bits mode:
```go
package utils
import (
"math/bits"
"testing"
)
func TestBreak(t *testing.T) {
if bits.UintSize != 64 {
panic("bits.UintSize != 64")
}
}
```
Languages
Go
100%