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

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

Issue 160200044: [dev.power64] code review 160200044: build: merge default into dev.power64 (Closed)
Left Patch Set: Created 10 years, 4 months ago
Right Patch Set: diff -r be0c14f62257b42485019e9e1db23cf40d2e249f https://code.google.com/p/go Created 10 years, 4 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 | « test/fixedbugs/issue8336.go ('k') | test/fixedbugs/issue8612.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 // build
2
3 // Copyright 2014 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 // Issue 8745: comma-ok assignments should produce untyped bool as 2nd result.
8
9 package main
10
11 type mybool bool
12
13 func main() {
14 var ok mybool
15 _ = ok
16
17 var i interface{}
18 _, ok = i.(int)
19
20 var m map[int]int
21 _, ok = m[0]
22
23 var c chan int
24 _, ok = <-c
25 }
LEFTRIGHT

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