You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
210 B

package main
var x struct {
a, b, c int64
d struct{ p, q, r int32 }
e [8]byte
f [4]struct{ p, q, r int32 }
}
var y = &x.b
var z = &x.d.q
var b [10]byte
var c = &b[5]
var w = &x.f[3].r