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

Side by Side Diff: test/fixedbugs/issue8475.go

Issue 127950043: code review 127950043: compiler: comma-ok assignments produce untyped bool as ... (Closed)
Patch Set: diff -r 0449858880beeb4216dc94ac59892205473f6f78 https://code.google.com/p/go Created 10 years, 7 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:
View unified diff | Download patch
« no previous file with comments | « src/cmd/gc/walk.c ('k') | test/named1.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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 }
OLDNEW
« no previous file with comments | « src/cmd/gc/walk.c ('k') | test/named1.go » ('j') | no next file with comments »

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