android_mt6572_jiabo/prebuilts/go/linux-x86/test/fixedbugs/issue5614.dir/rethinkgo.go
2025-09-05 16:56:03 +08:00

16 lines
255 B
Go

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}}
}