Home | History | Annotate | Download | only in fixedbugs
      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 
      7 package main
      8 
      9 func 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 /*
     19 uetli:~/Source/go/test/bugs gri$ 6g bug082.go
     20 bug082.go:7: fatal error: optoas: no entry COM-<int32>INT32
     21 */
     22