Russ Cox | 8080384 | 2012-02-16 23:49:59 -0500 | [diff] [blame] | 1 | // compile |
Russ Cox | 5e98505 | 2011-12-07 15:48:55 -0500 | [diff] [blame] | 2 | |
Emmanuel Odeke | 53fd522 | 2016-04-10 14:32:26 -0700 | [diff] [blame] | 3 | // Copyright 2011 The Go Authors. All rights reserved. |
Russ Cox | 5e98505 | 2011-12-07 15:48:55 -0500 | [diff] [blame] | 4 | // Use of this source code is governed by a BSD-style |
5 | // license that can be found in the LICENSE file. | ||||
6 | |||||
7 | // Used to cause a typechecking loop error. | ||||
8 | |||||
9 | package pkg | ||||
10 | type T map[int]string | ||||
11 | var q = &T{} |