Initial commit: Go 1.23 release state
This commit is contained in:
17
test/fixedbugs/issue5125.dir/bug.go
Normal file
17
test/fixedbugs/issue5125.dir/bug.go
Normal file
@@ -0,0 +1,17 @@
|
||||
// Copyright 2013 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 bug
|
||||
|
||||
type Node interface {
|
||||
Eval(s *Scene)
|
||||
}
|
||||
|
||||
type plug struct {
|
||||
node Node
|
||||
}
|
||||
|
||||
type Scene struct {
|
||||
changed map[plug]bool
|
||||
}
|
||||
10
test/fixedbugs/issue5125.dir/main.go
Normal file
10
test/fixedbugs/issue5125.dir/main.go
Normal file
@@ -0,0 +1,10 @@
|
||||
// Copyright 2013 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 _ "./bug"
|
||||
|
||||
func main() {
|
||||
}
|
||||
Reference in New Issue
Block a user