// Copyright 2016 The Go Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.packagemain// // No C code required.import"C"funcFuncInt()int{return1}
// Add a recursive type to to check that type equality across plugins doesn't// crash. See https://golang.org/issues/19258funcFuncRecursive()X{returnX{}}typeYstruct{X*X}typeXstruct{YY}