mirror of https://github.com/golang/go.git
52 lines
1.4 KiB
Plaintext
52 lines
1.4 KiB
Plaintext
-- suggestedfix_var_10_6 --
|
|
package undeclared
|
|
|
|
func m() int {
|
|
z, _ := 1+y, 11 //@diag("y", "compiler", "undeclared name: y", "error"),suggestedfix("y", "quickfix")
|
|
if 100 < 90 {
|
|
z = 1
|
|
} else if 100 > n+2 { //@diag("n", "compiler", "undeclared name: n", "error"),suggestedfix("n", "quickfix")
|
|
z = 4
|
|
}
|
|
i :=
|
|
for i < 200 { //@diag("i", "compiler", "undeclared name: i", "error"),suggestedfix("i", "quickfix")
|
|
}
|
|
r() //@diag("r", "compiler", "undeclared name: r", "error")
|
|
return z
|
|
}
|
|
|
|
-- suggestedfix_var_4_12 --
|
|
package undeclared
|
|
|
|
func m() int {
|
|
y :=
|
|
z, _ := 1+y, 11 //@diag("y", "compiler", "undeclared name: y", "error"),suggestedfix("y", "quickfix")
|
|
if 100 < 90 {
|
|
z = 1
|
|
} else if 100 > n+2 { //@diag("n", "compiler", "undeclared name: n", "error"),suggestedfix("n", "quickfix")
|
|
z = 4
|
|
}
|
|
for i < 200 { //@diag("i", "compiler", "undeclared name: i", "error"),suggestedfix("i", "quickfix")
|
|
}
|
|
r() //@diag("r", "compiler", "undeclared name: r", "error")
|
|
return z
|
|
}
|
|
|
|
-- suggestedfix_var_7_18 --
|
|
package undeclared
|
|
|
|
func m() int {
|
|
z, _ := 1+y, 11 //@diag("y", "compiler", "undeclared name: y", "error"),suggestedfix("y", "quickfix")
|
|
n :=
|
|
if 100 < 90 {
|
|
z = 1
|
|
} else if 100 > n+2 { //@diag("n", "compiler", "undeclared name: n", "error"),suggestedfix("n", "quickfix")
|
|
z = 4
|
|
}
|
|
for i < 200 { //@diag("i", "compiler", "undeclared name: i", "error"),suggestedfix("i", "quickfix")
|
|
}
|
|
r() //@diag("r", "compiler", "undeclared name: r", "error")
|
|
return z
|
|
}
|
|
|