1// run 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 7package main 8 9func main() { 10 x := 0 11 x = ^x // unary ^ not yet implemented 12 if x != ^0 { 13 println(x, " ", ^0) 14 panic("fail") 15 } 16} 17 18/* 19uetli:~/Source/go/test/bugs gri$ 6g bug082.go 20bug082.go:7: fatal error: optoas: no entry COM-<int32>INT32 21*/ 22