Rémy Oudompheng | 2ece2f5 | 2012-02-18 22:15:42 +0100 | [diff] [blame] | 1 | // run |
Russ Cox | 2281ca1 | 2011-01-06 11:21:18 -0500 | [diff] [blame] | 2 | |
Emmanuel Odeke | 53fd522 | 2016-04-10 14:32:26 -0700 | [diff] [blame] | 3 | // Copyright 2011 The Go Authors. All rights reserved. |
Russ Cox | 2281ca1 | 2011-01-06 11:21:18 -0500 | [diff] [blame] | 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 | func main() { |
| 10 | x := []uint{0} |
| 11 | x[0] &^= f() |
| 12 | } |
| 13 | |
| 14 | func f() uint { |
| 15 | return 1<<31 // doesn't panic with 1<<31 - 1 |
| 16 | } |