Russ Cox | 8f194bf | 2009-03-12 19:04:38 -0700 | [diff] [blame] | 1 | // $G $D/$F.go && $L $F.$A && ./$A.out |
| 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 | |
| 7 | package main |
| 8 | |
| 9 | import "fmt" |
| 10 | |
| 11 | type T int |
| 12 | func (t T) String() string { |
| 13 | return fmt.Sprintf("T%d", t); |
| 14 | } |
| 15 | |
| 16 | const ( |
| 17 | A T = 1<<(1<<iota); |
| 18 | B; |
| 19 | C; |
| 20 | D; |
| 21 | E; |
| 22 | ) |
| 23 | |
| 24 | func main() { |
| 25 | s := fmt.Sprintf("%v %v %v %v %v", A, B, C, D, E); |
| 26 | if s != "T2 T4 T16 T256 T65536" { |
| 27 | panicln("type info didn't propagate in const: got", s); |
| 28 | } |
| 29 | } |