go/test/fixedbugs/bug165.go
Russ Cox 480f51243c bug165
R=ken
OCL=30783
CL=30783
2009-06-25 21:02:39 -07:00

16 lines
300 B
Go

// errchk $G $D/$F.go
// Copyright 2009 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
type I interface {
m(map[I] bool); // ok
}
type S struct {
m map[S] bool; // ERROR "map key type"
}