1// run
2
3// Copyright 2017 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// We were picking up a special noalg type from typelinks.
8
9package main
10
11import "reflect"
12
13func f(m map[string]int) int {
14	return m["a"]
15}
16
17func g(m map[[8]string]int) int {
18	t := reflect.ArrayOf(8, reflect.TypeOf(""))
19	a := reflect.New(t).Elem()
20	return m[a.Interface().([8]string)]
21}
22
23func main() {
24	m := map[[8]string]int{}
25	g(m)
26}
27