summaryrefslogtreecommitdiff
path: root/test/complit1.go
blob: 23b3bbd192cb7e5d8418f46628742d3a99619938 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// errchk $G -e $D/$F.go

// Copyright 2011 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.

package main

var m map[int][3]int
func f() [3]int

func fp() *[3]int
var mp map[int]*[3]int

var (
	_ = [3]int{1,2,3}[:]  // ERROR "slice of unaddressable value"
	_ = m[0][:]  // ERROR "slice of unaddressable value"
	_ = f()[:]  // ERROR "slice of unaddressable value"
	
	// these are okay because they are slicing a pointer to an array
	_ = (&[3]int{1,2,3})[:]
	_ = mp[0][:]
	_ = fp()[:]
)