Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / go / ssa / interp / testdata / reflect.go
1 package main
2
3 import "reflect"
4
5 func main() {
6         // Regression test for issue 9462.
7         got := reflect.SliceOf(reflect.TypeOf(byte(0))).String()
8         if got != "[]uint8" && got != "[]byte" { // result varies by toolchain
9                 println("BUG: " + got)
10         }
11 }