From 6f23bc02eda515805ac9fc4fccfa93b9768d624d Mon Sep 17 00:00:00 2001 From: richboo111 Date: Mon, 13 Mar 2023 14:53:18 +0800 Subject: [PATCH] 1 --- platformapi/uuptapi/uupt_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/platformapi/uuptapi/uupt_test.go b/platformapi/uuptapi/uupt_test.go index 2fd8331d..8118a8fa 100644 --- a/platformapi/uuptapi/uupt_test.go +++ b/platformapi/uuptapi/uupt_test.go @@ -105,6 +105,7 @@ type tStruct struct { } func Test(t *testing.T) { - a := tStruct{name: "11"} - fmt.Println(a != tStruct{}) + zero := 0 + a := int(zero) * 100 + fmt.Printf("a====%d", a) }