mirror of
https://github.com/golang/go
synced 2024-11-12 02:10:21 -07:00
7eff30f0f0
R=r DELTA=185 (59 added, 33 deleted, 93 changed) OCL=14655 CL=14655
15 lines
353 B
Go
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
|
|
}
|