aboutsummaryrefslogtreecommitdiffstats
path: root/testdata/simple.go
diff options
context:
space:
mode:
Diffstat (limited to 'testdata/simple.go')
-rw-r--r--testdata/simple.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/testdata/simple.go b/testdata/simple.go
index d01a95e..76fb5d5 100644
--- a/testdata/simple.go
+++ b/testdata/simple.go
@@ -21,6 +21,10 @@ func main() {
str := "a"
strings.Repeat(str, 3)
+
+ var decl string
+ decl = "b"
+ strings.Repeat(decl, 2)
}(copied)
}