1
0
mirror of https://github.com/securego/gosec.git synced 2025-03-19 21:08:30 +02:00
This commit is contained in:
s7v7nislands 2016-10-25 12:08:59 +08:00
parent 92dda9cc3b
commit eedb0c279d

View File

@ -33,13 +33,13 @@ func TestUnsafe(t *testing.T) {
"unsafe"
)
type Fake struct{}
type Fake struct{}
func (Fake) Good() {}
func (Fake) Good() {}
func main() {
unsafeM := Fake{}
unsafeM.Good()
unsafeM := Fake{}
unsafeM.Good()
intArray := [...]int{1, 2}
fmt.Printf("\nintArray: %v\n", intArray)
intPtr := &intArray[0]