Initial commit: Go 1.23 release state
This commit is contained in:
16
test/fixedbugs/issue5614.dir/rethinkgo.go
Normal file
16
test/fixedbugs/issue5614.dir/rethinkgo.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package rethinkgo
|
||||
|
||||
type Session struct {
|
||||
}
|
||||
|
||||
func (s *Session) Run(query Exp) *int { return nil }
|
||||
|
||||
type List []interface{}
|
||||
|
||||
type Exp struct {
|
||||
args []interface{}
|
||||
}
|
||||
|
||||
func (e Exp) UseOutdated(useOutdated bool) Exp {
|
||||
return Exp{args: List{e, useOutdated}}
|
||||
}
|
||||
Reference in New Issue
Block a user