mirror of
https://github.com/golang/go
synced 2024-11-26 14:08:37 -07:00
test: add type alias test that caused gccgo to crash
Change-Id: I3b388e4ac05ace5b7768ade03df2bee5bcc26ba8 Reviewed-on: https://go-review.googlesource.com/73790 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Than McIntosh <thanm@google.com>
This commit is contained in:
parent
c35f239d52
commit
6222997047
20
test/fixedbugs/bug505.go
Normal file
20
test/fixedbugs/bug505.go
Normal file
@ -0,0 +1,20 @@
|
||||
// compile
|
||||
|
||||
// Copyright 2017 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.
|
||||
|
||||
// gccgo crashed compiling this file with a failed conversion to the
|
||||
// alias type when constructing the composite literal.
|
||||
|
||||
package p
|
||||
|
||||
type I interface{ M() }
|
||||
type A = I
|
||||
type S struct {
|
||||
f A
|
||||
}
|
||||
|
||||
func F(i I) S {
|
||||
return S{f: i}
|
||||
}
|
Loading…
Reference in New Issue
Block a user