Home | History | Annotate | Download | only in test

Lines Matching refs:tee

737 func tee(p *int) (x, y *int) { return p, p } // ERROR "leaking param: p to result x level=0$" "leaking param: p to result y level=0$"
743 go noop(tee(&z)) // ERROR "&z escapes to heap$"
747 defer noop(tee(&u)) // ERROR "&u escapes to heap$"