Russ Cox | 0b477ef | 2012-02-16 23:48:57 -0500 | [diff] [blame] | 1 | // errorcheck |
Russ Cox | 1163b1d | 2008-10-16 15:59:31 -0700 | [diff] [blame] | 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 | |
Rob Pike | fc0dc04 | 2012-02-19 13:19:43 +1100 | [diff] [blame^] | 7 | // Verify that illegal assignments with both explicit and implicit conversions of literals are detected. |
| 8 | // Does not compile. |
| 9 | |
Russ Cox | 1163b1d | 2008-10-16 15:59:31 -0700 | [diff] [blame] | 10 | package main |
| 11 | |
Rob Pike | fc0dc04 | 2012-02-19 13:19:43 +1100 | [diff] [blame^] | 12 | // explicit conversion of constants |
Rob Pike | 4f61fc9 | 2010-09-04 10:36:13 +1000 | [diff] [blame] | 13 | var x1 = string(1) |
| 14 | var x2 string = string(1) |
Russ Cox | f2b5a07 | 2011-01-19 23:09:00 -0500 | [diff] [blame] | 15 | var x3 = int(1.5) // ERROR "convert|truncate" |
| 16 | var x4 int = int(1.5) // ERROR "convert|truncate" |
Rob Pike | 4f61fc9 | 2010-09-04 10:36:13 +1000 | [diff] [blame] | 17 | var x5 = "a" + string(1) |
Russ Cox | f2b5a07 | 2011-01-19 23:09:00 -0500 | [diff] [blame] | 18 | var x6 = int(1e100) // ERROR "overflow" |
| 19 | var x7 = float32(1e1000) // ERROR "overflow" |
Russ Cox | 1163b1d | 2008-10-16 15:59:31 -0700 | [diff] [blame] | 20 | |
| 21 | // implicit conversions merit scrutiny |
Rob Pike | 4f61fc9 | 2010-09-04 10:36:13 +1000 | [diff] [blame] | 22 | var s string |
Russ Cox | f2b5a07 | 2011-01-19 23:09:00 -0500 | [diff] [blame] | 23 | var bad1 string = 1 // ERROR "conver|incompatible|invalid|cannot" |
| 24 | var bad2 = s + 1 // ERROR "conver|incompatible|invalid" |
| 25 | var bad3 = s + 'a' // ERROR "conver|incompatible|invalid" |
| 26 | var bad4 = "a" + 1 // ERROR "literals|incompatible|convert|invalid" |
| 27 | var bad5 = "a" + 'a' // ERROR "literals|incompatible|convert|invalid" |
Russ Cox | 1163b1d | 2008-10-16 15:59:31 -0700 | [diff] [blame] | 28 | |
Russ Cox | f2b5a07 | 2011-01-19 23:09:00 -0500 | [diff] [blame] | 29 | var bad6 int = 1.5 // ERROR "convert|truncate" |
| 30 | var bad7 int = 1e100 // ERROR "overflow" |
| 31 | var bad8 float32 = 1e200 // ERROR "overflow" |
Russ Cox | 1163b1d | 2008-10-16 15:59:31 -0700 | [diff] [blame] | 32 | |
| 33 | // but these implicit conversions are okay |
Rob Pike | 4f61fc9 | 2010-09-04 10:36:13 +1000 | [diff] [blame] | 34 | var good1 string = "a" |
| 35 | var good2 int = 1.0 |
| 36 | var good3 int = 1e9 |
Russ Cox | f2b5a07 | 2011-01-19 23:09:00 -0500 | [diff] [blame] | 37 | var good4 float64 = 1e20 |
Russ Cox | 1163b1d | 2008-10-16 15:59:31 -0700 | [diff] [blame] | 38 | |
Russ Cox | 3910161 | 2010-02-25 15:11:07 -0800 | [diff] [blame] | 39 | // explicit conversion of string is okay |
Russ Cox | db33959 | 2011-10-25 22:20:02 -0700 | [diff] [blame] | 40 | var _ = []rune("abc") |
Russ Cox | 3910161 | 2010-02-25 15:11:07 -0800 | [diff] [blame] | 41 | var _ = []byte("abc") |
| 42 | |
| 43 | // implicit is not |
Russ Cox | f2b5a07 | 2011-01-19 23:09:00 -0500 | [diff] [blame] | 44 | var _ []int = "abc" // ERROR "cannot use|incompatible|invalid" |
| 45 | var _ []byte = "abc" // ERROR "cannot use|incompatible|invalid" |
Russ Cox | 3910161 | 2010-02-25 15:11:07 -0800 | [diff] [blame] | 46 | |
| 47 | // named string is okay |
| 48 | type Tstring string |
Russ Cox | f2b5a07 | 2011-01-19 23:09:00 -0500 | [diff] [blame] | 49 | |
Russ Cox | 3910161 | 2010-02-25 15:11:07 -0800 | [diff] [blame] | 50 | var ss Tstring = "abc" |
Russ Cox | db33959 | 2011-10-25 22:20:02 -0700 | [diff] [blame] | 51 | var _ = []rune(ss) |
Russ Cox | 3910161 | 2010-02-25 15:11:07 -0800 | [diff] [blame] | 52 | var _ = []byte(ss) |
| 53 | |
| 54 | // implicit is still not |
Russ Cox | db33959 | 2011-10-25 22:20:02 -0700 | [diff] [blame] | 55 | var _ []rune = ss // ERROR "cannot use|incompatible|invalid" |
Russ Cox | f2b5a07 | 2011-01-19 23:09:00 -0500 | [diff] [blame] | 56 | var _ []byte = ss // ERROR "cannot use|incompatible|invalid" |
Russ Cox | 3910161 | 2010-02-25 15:11:07 -0800 | [diff] [blame] | 57 | |
Russ Cox | 6e3e380 | 2011-11-22 12:30:02 -0500 | [diff] [blame] | 58 | // named slice is now ok |
Russ Cox | db33959 | 2011-10-25 22:20:02 -0700 | [diff] [blame] | 59 | type Trune []rune |
Russ Cox | 3910161 | 2010-02-25 15:11:07 -0800 | [diff] [blame] | 60 | type Tbyte []byte |
Russ Cox | f2b5a07 | 2011-01-19 23:09:00 -0500 | [diff] [blame] | 61 | |
Russ Cox | 6e3e380 | 2011-11-22 12:30:02 -0500 | [diff] [blame] | 62 | var _ = Trune("abc") // ok |
| 63 | var _ = Tbyte("abc") // ok |
Russ Cox | 3910161 | 2010-02-25 15:11:07 -0800 | [diff] [blame] | 64 | |
| 65 | // implicit is still not |
Russ Cox | db33959 | 2011-10-25 22:20:02 -0700 | [diff] [blame] | 66 | var _ Trune = "abc" // ERROR "cannot use|incompatible|invalid" |
Russ Cox | f2b5a07 | 2011-01-19 23:09:00 -0500 | [diff] [blame] | 67 | var _ Tbyte = "abc" // ERROR "cannot use|incompatible|invalid" |