1
0
mirror of https://github.com/golang/go synced 2024-09-24 15:30:13 -06:00
go/test/fixedbugs/bug073.go
Robert Griesemer 7eff30f0f0 - updated test cases to latest compiler changes
R=r
DELTA=185  (59 added, 33 deleted, 93 changed)
OCL=14655
CL=14655
2008-08-29 13:21:00 -07:00

15 lines
353 B
Go

// errchk $G $D/$F.go
// 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 main() {
var s int = 0;
var x int = 0;
x = x << s; // should complain that s is not a uint
x = x >> s; // should complain that s is not a uint
}