mirror of https://github.com/golang/go.git
19 lines
294 B
Plaintext
19 lines
294 B
Plaintext
-- functionextraction_extract_redefine_7_2 --
|
|
package extract
|
|
|
|
import "strconv"
|
|
|
|
func _() {
|
|
i, err := strconv.Atoi("1")
|
|
u, err := newFunction() //@extractfunc("u", ")")
|
|
if i == u || err == nil {
|
|
return
|
|
}
|
|
}
|
|
|
|
func newFunction() (int, error) {
|
|
u, err := strconv.Atoi("2")
|
|
return u, err
|
|
}
|
|
|