Skip to content

Commit 6222997

Browse files
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 <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Than McIntosh <[email protected]>
1 parent c35f239 commit 6222997

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

test/fixedbugs/bug505.go

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// compile
2+
3+
// Copyright 2017 The Go Authors. All rights reserved.
4+
// Use of this source code is governed by a BSD-style
5+
// license that can be found in the LICENSE file.
6+
7+
// gccgo crashed compiling this file with a failed conversion to the
8+
// alias type when constructing the composite literal.
9+
10+
package p
11+
12+
type I interface{ M() }
13+
type A = I
14+
type S struct {
15+
f A
16+
}
17+
18+
func F(i I) S {
19+
return S{f: i}
20+
}

0 commit comments

Comments
 (0)