1 // Copyright 2020 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package p
6
7 // Do not report a duplicate type error for this term list.
8 // (Check types after interfaces have been completed.)
9 type _ interface {
10 // TODO(rfindley) Once we have full type sets we can enable this again.
11 // Fow now we don't permit interfaces in term lists.
12 // type interface{ Error() string }, interface{ String() string }
13 }
14
View as plain text