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

Delta Between Two Patch Sets: test/cmp.go

Issue 10271046: code review 10271046: cmd/gc: fix computation of equality class of types. (Closed)
Left Patch Set: Created 11 years, 9 months ago
Right Patch Set: diff -r dfb6b95d3a98 https://go.googlecode.com/hg/ Created 11 years, 9 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/blank1.go ('k') | test/cmp6.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 // run 1 // run
2 2
3 // Copyright 2009 The Go Authors. All rights reserved. 3 // Copyright 2009 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 // Test equality and inequality operations. 7 // Test equality and inequality operations.
8 8
9 package main 9 package main
10 10
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 istrue(iy != z) 289 istrue(iy != z)
290 istrue(iz != y) 290 istrue(iz != y)
291 isfalse(ix != z) 291 isfalse(ix != z)
292 isfalse(iz != x) 292 isfalse(iz != x)
293 } 293 }
294 294
295 // structs with _ fields 295 // structs with _ fields
296 { 296 {
297 var x = struct { 297 var x = struct {
298 x int 298 x int
299 » » » _ []int 299 » » » _ string
300 y float64 300 y float64
301 _ float64 301 _ float64
302 z int 302 z int
303 }{ 303 }{
304 x: 1, y: 2, z: 3, 304 x: 1, y: 2, z: 3,
305 } 305 }
306 var ix interface{} = x 306 var ix interface{} = x
307 307
308 istrue(x == x) 308 istrue(x == x)
309 istrue(x == ix) 309 istrue(x == ix)
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 } 420 }
421 421
422 func shouldPanic(f func()) { 422 func shouldPanic(f func()) {
423 defer func() { 423 defer func() {
424 if recover() == nil { 424 if recover() == nil {
425 panic("function should panic") 425 panic("function should panic")
426 } 426 }
427 }() 427 }()
428 f() 428 f()
429 } 429 }
LEFTRIGHT

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