1
0
mirror of https://github.com/golang/go synced 2024-11-11 22:50:22 -07:00

test: add a test that crashed gccgo

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/13683046
This commit is contained in:
Ian Lance Taylor 2013-09-17 18:06:58 -07:00
parent fefa4f2b89
commit e27b0cdfc4

23
test/fixedbugs/bug476.go Normal file
View File

@ -0,0 +1,23 @@
// compile
// Copyright 2013 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.
// Logical operation on named boolean type returns the same type,
// supporting an implicit convertion to an interface type. This used
// to crash gccgo.
package p
type B bool
func (b B) M() {}
type I interface {
M()
}
func F(a, b B) I {
return a && b
}