diff options
Diffstat (limited to 'test/fixedbugs/issue58563.dir')
-rw-r--r-- | test/fixedbugs/issue58563.dir/a.go | 13 | ||||
-rw-r--r-- | test/fixedbugs/issue58563.dir/main.go | 16 |
2 files changed, 29 insertions, 0 deletions
diff --git a/test/fixedbugs/issue58563.dir/a.go b/test/fixedbugs/issue58563.dir/a.go new file mode 100644 index 0000000..2b716c1 --- /dev/null +++ b/test/fixedbugs/issue58563.dir/a.go @@ -0,0 +1,13 @@ +// 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 Start() interface{ Stop() } { + return new(Stopper) +} + +type Stopper struct{} + +func (s *Stopper) Stop() {} diff --git a/test/fixedbugs/issue58563.dir/main.go b/test/fixedbugs/issue58563.dir/main.go new file mode 100644 index 0000000..18a90fc --- /dev/null +++ b/test/fixedbugs/issue58563.dir/main.go @@ -0,0 +1,16 @@ +// 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 main + +import "test/a" + +func main() { + stop := start() + defer stop() +} + +func start() func() { + return a.Start().Stop +} |