Files
moxa/_test/struct24.go

13 lines
100 B
Go

package main
var a = &T{}
type T struct{}
func main() {
println(a != nil)
}
// Output:
// true