1
0
mirror of https://github.com/golang/go synced 2024-09-24 11:20:20 -06:00
go/test/fixedbugs/gcc67968.dir/a.go
Ian Lance Taylor a4fb8c13db test: add gcc6798, valid code that caused gccgo to crash
Change-Id: I288bd3091ea81db7b616747cbec8958a31d98b7e
Reviewed-on: https://go-review.googlesource.com/16532
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2015-11-01 21:17:01 +00:00

13 lines
242 B
Go

// Copyright 2015 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.
package a
type T int
func (a *T) Foo() [1]string {
var r [1]string
return r
}