blob: c2e5ff5994bbbe07e1c9d96cb0db46e8eb16c1a1 [file] [log] [blame]
// compile
// 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 39737.
package p
func F1[T any]() {}
func F2() {
F1(struct { F string `json:"f"` })()
}