1
0
mirror of https://github.com/golang/go synced 2024-09-24 11:10:12 -06:00
go/test/fixedbugs/gcc67968.dir/b.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
248 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 b
import "./a"
func F() (interface{}) {
var v *a.T
return v.Foo()
}