mirror of
https://github.com/golang/go
synced 2024-11-02 05:32:33 +00:00
2ece2f58ee
Apply sed with: 1s,^// $G $D/$F.go && $L $F.$A && ./$A.out || echo.*,// run, 1s,^// $G $D/$F.go || echo.*,// compile, R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5656099
21 lines
346 B
Go
21 lines
346 B
Go
// compile
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
func f(a int64) int64 {
|
|
const b int64 = 0;
|
|
n := a &^ b;
|
|
return n;
|
|
}
|
|
|
|
func main() {
|
|
f(1)
|
|
}
|
|
|
|
/*
|
|
bug156.go:7: constant 18446744073709551615 overflows int64
|
|
*/
|