blob: c314f4d613f97b5f2bfe22991ad0ea4a6ae1e5ae [file] [log] [blame]
// +build OMIT
package P
import (
"xpkg"
"ypkg"
"golang.org/x/net/context"
)
func before(x xpkg.X, y ypkg.Y) error { // HL
return x.M(y)
}
func after(x xpkg.X, y ypkg.Y) error { // HL
return x.MContext(context.TODO(), y)
}