Sign in
go
/
go
/
1dc77a38d293763b9de50110dd72edd755ce72b7
/
.
/
test
/
fixedbugs
/
issue5614.dir
/
rethinkgo.go
blob: 4ae66d679ea59fc47c07fe7c2b2ad6dd334d5382 [
file
] [
log
] [
blame
]
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}}
}