This commit is contained in:
邹宗楠
2022-07-13 16:22:15 +08:00
parent ffbc7048b6
commit 7d080421a5

View File

@@ -201,3 +201,12 @@ func TestDataUnmas(t *testing.T) {
func TestErr2CallbackResponse(t *testing.T) {
fmt.Println(fmt.Sprintf("%05d", rand.Intn(1000000)))
}
func Test11(t *testing.T) {
fmt.Println(57&2 != 0)
fmt.Println(10&2 != 0)
fmt.Println(32&2 != 0)
fmt.Println(8&2 != 0)
fmt.Println(59&2 != 0)
fmt.Println(0&2 != 0)
}