Source file test/fixedbugs/issue44325.dir/a.go
1 // Copyright 2021 The Go Authors. All rights reserved. Use of this 2 // source code is governed by a BSD-style license that can be found in 3 // the LICENSE file. 4 5 package a 6 7 func FM() func() { 8 return func() { 9 _ = func() int { 10 return 0 11 } 12 } 13 } 14