Commit e27b0cdf authored by Ian Lance Taylor's avatar Ian Lance Taylor

test: add a test that crashed gccgo

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/13683046
parent fefa4f2b
// 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
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment