mirror of
https://github.com/golang/go
synced 2024-11-06 02:16:10 -07:00
d4a6a2661c
Test with some code that triggered a compilation error bug in gccgo. Updates #33866. Change-Id: Ib2f226bbbebbfae33b41037438fe34dc5f2ad034 Reviewed-on: https://go-review.googlesource.com/c/go/+/193261 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
16 lines
262 B
Go
16 lines
262 B
Go
// Copyright 2019 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 b
|
|
|
|
import "./a"
|
|
|
|
type (
|
|
ABuilder = a.Builder
|
|
)
|
|
|
|
func Bfunc() ABuilder {
|
|
return ABuilder{}
|
|
}
|