mirror of https://github.com/pwndbg/pwndbg.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
406 B
Go
19 lines
406 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func testFunc(x interface{}) *interface{} {
|
|
fmt.Println(x)
|
|
return &x // leak x to force it to be allocated somewhere
|
|
}
|
|
|
|
func main() {
|
|
testFunc(map[uint8]uint64{1: 2, 3: 4, 5: 6})
|
|
testFunc(map[string]int{"a": 1, "b": 2, "c": 3})
|
|
testFunc([]struct {
|
|
a int
|
|
b string
|
|
}{{a: 1, b: "first"}, {a: 2, b: "second"}})
|
|
testFunc([3]complex64{1.1 + 2.2i, -2.5 - 5i, 4.2 - 2.1i})
|
|
}
|