summaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue20250.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue20250.go')
-rw-r--r--test/fixedbugs/issue20250.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/fixedbugs/issue20250.go b/test/fixedbugs/issue20250.go
index 6fc861a8dc..47879385d2 100644
--- a/test/fixedbugs/issue20250.go
+++ b/test/fixedbugs/issue20250.go
@@ -15,10 +15,10 @@ type T struct {
}
func f(a T) { // ERROR "live at entry to f: a"
- var e interface{}
- func() { // ERROR "live at entry to f.func1: a &e"
- e = a.s // ERROR "live at call to convT2Estring: a &e"
- }() // ERROR "live at call to f.func1: e$"
+ var e interface{} // ERROR "stack object e interface \{\}$"
+ func() { // ERROR "live at entry to f.func1: a &e"
+ e = a.s // ERROR "live at call to convT2Estring: &e" "stack object a T$"
+ }()
// Before the fix, both a and e were live at the previous line.
_ = e
}