blob: 7eeed03e81aac4ddf93266baf39e734a4689c378 [file] [log] [blame]
package inlayHint //@inlayHint("package")
import "fmt"
func fieldNames() {
for _, c := range []struct {
in, want string
}{
{"Hello, world", "dlrow ,olleH"},
{"Hello, 世界", "界世 ,olleH"},
{"", ""},
} {
fmt.Println(c.in == c.want)
}
}