blob: 0249b68d22dc637780e830572a9f9fe175d26f37 [file] [log] [blame]
// +build testdata
package testdata
type Type1 struct {
}
func (r Type1) Func2a(arg1 *int) {
if *arg1 != 0 {
*arg1 = 1
}
}
func (r *Type1) Func2b(arg1 *int) {
}
func (r *Type1) Func2c(arg1 *int) {
}