blob: b2e13fc22ad247823036bc550fbc663527856e6c [file] [log] [blame]
// +build OMIT
package client // OMIT
func proc(it Iterator) (ret time.Duration) {
d := it.DurationAt()
if d == duration.Unterminated { // HL
ret = -1
} else {
ret = d
}
// some code
}