Dave Cheney | 5b342f7 | 2014-06-22 17:33:00 +1000 | [diff] [blame] | 1 | // compile |
| 2 | |
| 3 | // Copyright 2014 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 | |
Dave Cheney | 3e692be | 2014-06-29 20:34:35 +1000 | [diff] [blame] | 7 | // issue 8074. |
Dave Cheney | 5b342f7 | 2014-06-22 17:33:00 +1000 | [diff] [blame] | 8 | // was "cannot take the address of 1" |
| 9 | |
| 10 | package main |
| 11 | |
| 12 | func main() { |
| 13 | a := make([]byte, 10) |
| 14 | m := make(map[float64][]byte) |
| 15 | go copy(a, m[1.0]) |
| 16 | } |