mirror of
https://github.com/golang/go
synced 2024-11-21 20:54:45 -07:00
032ffb2e90
Fixes #2110. R=ken2 CC=golang-dev https://golang.org/cl/4823060
23 lines
431 B
Go
23 lines
431 B
Go
// errchk $G $D/$F.go
|
|
|
|
// Copyright 2011 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.
|
|
|
|
// check that compiler doesn't stop reading struct def
|
|
// after first unknown type.
|
|
|
|
// Fixes issue 2110.
|
|
|
|
package main
|
|
|
|
type S struct {
|
|
err os.Error // ERROR "undefined"
|
|
Num int
|
|
}
|
|
|
|
func main() {
|
|
s := S{}
|
|
_ = s.Num // no error here please
|
|
}
|