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

13 lines
144 B
Go

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