blob: 5ec95b94688b56195bbf992891f5cbab3a0fd9d0 [file] [log] [blame]
Russ Cox68209ed2008-09-17 14:08:52 -07001// $G $F.go && $L $F.$A && ./$A.out
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 print(-(1<<63), "\n");
11 print((1<<63)-1, "\n")
12}