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

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

Issue 4709042: code review 4709042: gc: fix closure bug (Closed)
Left Patch Set: diff -r 207a10acbc0f https://go.googlecode.com/hg/ Created 12 years, 8 months ago
Right Patch Set: diff -r fa6814569009 https://go.googlecode.com/hg/ Created 12 years, 8 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 | « src/cmd/gc/walk.c ('k') | no next file » | 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 // $G $D/$F.go && $L $F.$A && ./$A.out || echo BUG: issue2056
2
3 // Copyright 2011 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
6
7 package main
8
9 import "os"
10
11 func main() {
12 x := 4
13 a, b, c, d := func(i int) (p int, q int, r int, s int) { return 1, i, 3, x }(2)
14
15 if a != 1 || b != 2 || c != 3 || d != 4 {
16 println("abcd: expected 1 2 3 4 got", a, b, c, d)
17 os.Exit(1)
18 }
19 }
LEFTRIGHT

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