LEFT | RIGHT |
(no file at all) | |
1 // errchk $G $D/$F.go | 1 // errchk $G $D/$F.go |
2 | 2 |
3 // Copyright 2011 The Go Authors. All rights reserved. | 3 // Copyright 2011 The Go Authors. All rights reserved. |
4 // Use of this source code is governed by a BSD-style | 4 // Use of this source code is governed by a BSD-style |
5 // license that can be found in the LICENSE file. | 5 // license that can be found in the LICENSE file. |
6 | 6 |
7 // check that compiler doesn't stop reading struct def | 7 // check that compiler doesn't stop reading struct def |
8 // after first unknown type. | 8 // after first unknown type. |
9 | 9 |
10 // Fixes issue 2110. | 10 // Fixes issue 2110. |
11 | 11 |
12 package main | 12 package main |
13 | 13 |
14 type S struct { | 14 type S struct { |
15 » err os.Error // ERROR "undefined|expected package" | 15 » err foo.Bar // ERROR "undefined|expected package" |
16 Num int | 16 Num int |
17 } | 17 } |
18 | 18 |
19 func main() { | 19 func main() { |
20 s := S{} | 20 s := S{} |
21 » _ = s.Num // no error here please | 21 » _ = s.Num // no error here please |
22 } | 22 } |
LEFT | RIGHT |