mirror of
https://github.com/golang/go
synced 2024-11-07 11:36:11 -07:00
9a49b17f25
Change-Id: I64e05a1f768cb57194506021bb7fdca0ad19bf1c Reviewed-on: https://go-review.googlesource.com/c/go/+/168461 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
46 lines
906 B
Go
46 lines
906 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"reflect"
|
|
"runtime"
|
|
|
|
"testshared/depBase"
|
|
)
|
|
|
|
// Having a function declared in the main package triggered
|
|
// golang.org/issue/18250
|
|
func DeclaredInMain() {
|
|
}
|
|
|
|
type C struct {
|
|
}
|
|
|
|
func F() *C {
|
|
return nil
|
|
}
|
|
|
|
var slicePtr interface{} = &[]int{}
|
|
|
|
func main() {
|
|
defer depBase.ImplementedInAsm()
|
|
// This code below causes various go.itab.* symbols to be generated in
|
|
// the executable. Similar code in ../depBase/dep.go results in
|
|
// exercising https://golang.org/issues/17594
|
|
reflect.TypeOf(os.Stdout).Elem()
|
|
runtime.GC()
|
|
depBase.V = depBase.F() + 1
|
|
|
|
var c *C
|
|
if reflect.TypeOf(F).Out(0) != reflect.TypeOf(c) {
|
|
panic("bad reflection results, see golang.org/issue/18252")
|
|
}
|
|
|
|
sp := reflect.New(reflect.TypeOf(slicePtr).Elem())
|
|
s := sp.Interface()
|
|
|
|
if reflect.TypeOf(s) != reflect.TypeOf(slicePtr) {
|
|
panic("bad reflection results, see golang.org/issue/18729")
|
|
}
|
|
}
|