Black Lives Matter. Support the Equal Justice Initiative.

Text file src/go/types/testdata/fixedbugs/issue39711.go2

Documentation: go/types/testdata/fixedbugs

     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 type list.
     8  // (Check types after interfaces have been completed.)
     9  type _ interface {
    10  	type interface{ Error() string }, interface{ String() string }
    11  }
    12  

View as plain text