blob: fd060b0e2e909fe474e66d7938f570842f44ebc5 [file] [log] [blame]
Rob Pikeab34d152008-06-06 14:27:34 -07001// $G $D/$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
7
8package main
9
10var x,y int;
11
12func
Robert Griesemer581530e2009-12-10 12:53:23 -080013main() {
Rob Pikeab34d152008-06-06 14:27:34 -070014
15 x = 15;
16 y = 20;
17 {
18 var x int;
19 x = 25;
20 y = 25;
Russ Cox1a319892009-09-14 21:03:53 -070021 _ = x;
Rob Pikeab34d152008-06-06 14:27:34 -070022 }
23 x = x+y;
Rob Pikebc2f5f12008-08-11 22:07:49 -070024 if(x != 40) { panic(x); }
Rob Pikeab34d152008-06-06 14:27:34 -070025}