blob: e184ef1930156395e3ef69c9b11f6996680d6ae7 [file] [log] [blame]
Russ Cox2b1c9b42012-02-16 23:49:30 -05001// run
Robert Griesemer0748bf372008-07-30 16:09:29 -07002
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 Cox00f9f0c2010-03-30 10:34:57 -07007package main
8
Robert Griesemer0748bf372008-07-30 16:09:29 -07009func main() {
Russ Cox00f9f0c2010-03-30 10:34:57 -070010 x := 0
11 x = ^x // unary ^ not yet implemented
12 if x != ^0 {
13 println(x, " ", ^0)
14 panic("fail")
15 }
Robert Griesemer0748bf372008-07-30 16:09:29 -070016}
17
18/*
Russ Cox00f9f0c2010-03-30 10:34:57 -070019uetli:~/Source/go/test/bugs gri$ 6g bug082.go
Robert Griesemer0748bf372008-07-30 16:09:29 -070020bug082.go:7: fatal error: optoas: no entry COM-<int32>INT32
21*/