PR testsuite/86649
[official-gcc.git] / gcc / testsuite / go.test / test / printbig.go
blob5693c58d4f6a35407acff36e6e29daf9e24135de
1 // cmpout
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.
7 // Test that big numbers work as constants and print can print them.
9 package main
11 func main() {
12 print(-(1<<63), "\n")
13 print((1<<63)-1, "\n")