Test break in 386

This commit is contained in:
Eduard S
2020-04-09 13:53:41 +02:00
parent eb41fe0757
commit 3d81ae3d8b
2 changed files with 24 additions and 2 deletions

12
utils/break_test.go Normal file
View File

@@ -0,0 +1,12 @@
package utils
import (
"math/bits"
"testing"
)
func TestBreak(t *testing.T) {
if bits.UintSize != 64 {
panic("bits.UintSize != 64")
}
}