blob: 5693c58d4f6a35407acff36e6e29daf9e24135de [file] [log] [blame]
Brad Fitzpatricke014cf02012-02-24 13:17:26 +11001// cmpout
Russ Cox68209ed2008-09-17 14:08:52 -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
Rob Pike19bab1d2012-02-24 10:30:39 +11007// Test that big numbers work as constants and print can print them.
8
Russ Cox68209ed2008-09-17 14:08:52 -07009package main
10
11func main() {
Rob Pike4f61fc92010-09-04 10:36:13 +100012 print(-(1<<63), "\n")
Russ Cox68209ed2008-09-17 14:08:52 -070013 print((1<<63)-1, "\n")
14}