| // 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. |
| // ! errchk $G -e $D/$F.go |
| // explicit conversions are okay, even if they overflow |
| var x2 string = string(1); |
| var x5 = "a" + string(1); |
| // implicit conversions merit scrutiny |
| var bad1 string = 1; // ERROR "conver|incompatible" |
| var bad2 = s + 1; // ERROR "conver|incompatible" |
| var bad3 = s + 'a'; // ERROR "conver|incompatible" |
| var bad4 = "a" + 1; // ERROR "literals|incompatible|convert" |
| var bad5 = "a" + 'a'; // ERROR "literals|incompatible|convert" |
| var bad6 int = 1.5; // ERROR "convert|truncate" |
| var bad7 int = 1e100; // ERROR "overflow" |
| var bad8 float32 = 1e200; // ERROR "overflow" |
| // but these implicit conversions are okay |