Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(43)

Delta Between Two Patch Sets: test/fixedbugs/bug365.go

Issue 5328051: code review 5328051: test: error-related fixes (Closed)
Left Patch Set: Created 13 years, 5 months ago
Right Patch Set: diff -r 9ff3b0912866 https://go.googlecode.com/hg Created 13 years, 5 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | test/import.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(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 }
LEFTRIGHT
« no previous file | test/import.go » ('j') | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b