Russ Cox | 2b1c9b4 | 2012-02-16 23:49:30 -0500 | [diff] [blame] | 1 | // run |
Robert Griesemer | 0748bf37 | 2008-07-30 16:09:29 -0700 | [diff] [blame] | 2 | |
| 3 | // Copyright 2009 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 | |
Russ Cox | 00f9f0c | 2010-03-30 10:34:57 -0700 | [diff] [blame] | 7 | package main |
| 8 | |
Robert Griesemer | 0748bf37 | 2008-07-30 16:09:29 -0700 | [diff] [blame] | 9 | func main() { |
Russ Cox | 00f9f0c | 2010-03-30 10:34:57 -0700 | [diff] [blame] | 10 | x := 0 |
| 11 | x = ^x // unary ^ not yet implemented |
| 12 | if x != ^0 { |
| 13 | println(x, " ", ^0) |
| 14 | panic("fail") |
| 15 | } |
Robert Griesemer | 0748bf37 | 2008-07-30 16:09:29 -0700 | [diff] [blame] | 16 | } |
| 17 | |
| 18 | /* |
Russ Cox | 00f9f0c | 2010-03-30 10:34:57 -0700 | [diff] [blame] | 19 | uetli:~/Source/go/test/bugs gri$ 6g bug082.go |
Robert Griesemer | 0748bf37 | 2008-07-30 16:09:29 -0700 | [diff] [blame] | 20 | bug082.go:7: fatal error: optoas: no entry COM-<int32>INT32 |
| 21 | */ |