Sign in
go
/
tools
/
2758b0478a86793b078ec87125f9c307198fe321
/
.
/
go
/
ssa
/
interp
/
testdata
/
reflect.go
blob: 6aa9a67a45a07772c53a119a7fbe2a92f85fedaa [
file
] [
log
] [
blame
]
package main
import "reflect"
func main() {
// Regression test for issue 9462.
got := reflect.SliceOf(reflect.TypeOf(byte(0))).String()
if got != "[]uint8" && got != "[]byte" {
// result varies by toolchain
println("BUG: " + got)
}
}