Initial commit: Go 1.23 release state
This commit is contained in:
5
test/fixedbugs/bug467.dir/p1.go
Normal file
5
test/fixedbugs/bug467.dir/p1.go
Normal file
@@ -0,0 +1,5 @@
|
||||
package p1
|
||||
|
||||
type SockaddrUnix int
|
||||
|
||||
func (s SockaddrUnix) Error() string { return "blah" }
|
||||
5
test/fixedbugs/bug467.dir/p2.go
Normal file
5
test/fixedbugs/bug467.dir/p2.go
Normal file
@@ -0,0 +1,5 @@
|
||||
package p2
|
||||
|
||||
import "./p1"
|
||||
|
||||
func SockUnix() error { var s *p1.SockaddrUnix; return s }
|
||||
7
test/fixedbugs/bug467.dir/p3.go
Normal file
7
test/fixedbugs/bug467.dir/p3.go
Normal file
@@ -0,0 +1,7 @@
|
||||
package main
|
||||
|
||||
import "./p2"
|
||||
|
||||
func main() {
|
||||
_ = p2.SockUnix()
|
||||
}
|
||||
Reference in New Issue
Block a user