mirror of https://github.com/golang/go.git
28 lines
514 B
Go
28 lines
514 B
Go
package inlayHint //@inlayHint("package")
|
|
|
|
import "fmt"
|
|
|
|
func fieldNames() {
|
|
for _, c := range []struct {
|
|
in, want string
|
|
}{
|
|
struct{ in, want string }{"Hello, world", "dlrow ,olleH"},
|
|
{"Hello, 世界", "界世 ,olleH"},
|
|
{"", ""},
|
|
} {
|
|
fmt.Println(c.in == c.want)
|
|
}
|
|
}
|
|
|
|
func fieldNamesPointers() {
|
|
for _, c := range []*struct {
|
|
in, want string
|
|
}{
|
|
&struct{ in, want string }{"Hello, world", "dlrow ,olleH"},
|
|
{"Hello, 世界", "界世 ,olleH"},
|
|
{"", ""},
|
|
} {
|
|
fmt.Println(c.in == c.want)
|
|
}
|
|
}
|