At the same time, perform a number of simplifications: - Rename go.tools directory to gotools. - Import only the go directory; all required Go analysis code and its dependencies have now been moved to this directory. llvm-svn: 225825
12 lines
242 B
Go
12 lines
242 B
Go
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)
|
|
}
|
|
}
|