LEFT | RIGHT |
(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 Loading... |
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 Loading... |
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 } |
LEFT | RIGHT |