1
0
mirror of https://github.com/golang/go synced 2024-11-26 07:17:59 -07:00
go/test/fixedbugs/issue62498.dir/a.go

14 lines
235 B
Go
Raw Normal View History

// Copyright 2023 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.
package a
func One(L any) {
func() {
defer F(L)
}()
}
func F(any) {}