Sign in
go
/
tools
/
b53d4cbd60a6d7a92fac9b4a58de426c07a5666d
/
.
/
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)
}
}