ceremonyclient/bedlam/testsuite/math/bits/rotate_left_32.qcl
Cassandra Heart e51992f3e8
OT
2025-03-23 21:11:16 -05:00

13 lines
149 B
Go

// -*- go -*-
package main
import (
"math/bits"
)
// @Test 15 -2 = 3221225475
func main(a, b uint32) uint32 {
return bits.RotateLeft32(a, -2)
}