blob: 6881c13d6a242d8d16e2573ae0455624dae5f689 [file] [log] [blame]
// errorcheck
// Copyright 2020 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.
// Issue 39743.
package p
type S[T any] struct{}
func (s S[_]) M() {} // ERROR "_"
func F() {
S[int]{}.M()
}