blob: aedab240e3924233f0157f0d9eed166ebe6ef9d3 [file] [log] [blame]
Dave Cheney5b342f72014-06-22 17:33:00 +10001// 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 Cheney3e692be2014-06-29 20:34:35 +10007// issue 8074.
Dave Cheney5b342f72014-06-22 17:33:00 +10008// was "cannot take the address of 1"
9
10package main
11
12func main() {
13 a := make([]byte, 10)
14 m := make(map[float64][]byte)
15 go copy(a, m[1.0])
16}