mirror of
https://github.com/golang/go
synced 2024-11-05 15:46:11 -07:00
a4fb8c13db
Change-Id: I288bd3091ea81db7b616747cbec8958a31d98b7e Reviewed-on: https://go-review.googlesource.com/16532 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
13 lines
242 B
Go
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
|
|
}
|