Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / go.test / test / fixedbugs / bug193.go
blobf6b03e13d2ee3233c457dddb586fe6bbe7758c8f
1 // errchk $G $D/$F.go
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.
7 package main
9 func main() {
10 s := uint(10);
11 ss := 1<<s;
12 y1 := float(ss);
13 y2 := float(1<<s); // ERROR "shift"
14 y3 := string(1<<s); // ERROR "shift"
15 _, _, _, _, _ = s, ss, y1, y2, y3;