summaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2021-08-16 23:26:09 -0700
committergVisor bot <gvisor-bot@google.com>2021-08-16 23:29:11 -0700
commitfa32136ac0c3e3bfdb337ed727bedd7455abf68e (patch)
tree19b7bcc9cb1fcda699dbe20bf49ea6f054a5bd81 /tools
parent6294a7a6ec6d0e4666f5413df6e59738d02fc12e (diff)
Internal change.
PiperOrigin-RevId: 391217339
Diffstat (limited to 'tools')
-rw-r--r--tools/go_generics/rules_tests/template_test.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/go_generics/rules_tests/template_test.go b/tools/go_generics/rules_tests/template_test.go
index b2a3446ef..6f4d140da 100644
--- a/tools/go_generics/rules_tests/template_test.go
+++ b/tools/go_generics/rules_tests/template_test.go
@@ -20,14 +20,16 @@ import (
)
func TestMax(t *testing.T) {
- var a int = max(10, 20)
+ var a int
+ a = max(10, 20)
if a != 20 {
t.Errorf("Bad result of max, got %v, want %v", a, 20)
}
}
func TestIntConst(t *testing.T) {
- var a int = add(10)
+ var a int
+ a = add(10)
if a != 30 {
t.Errorf("Bad result of add, got %v, want %v", a, 30)
}