aboutsummaryrefslogtreecommitdiff
path: root/testdata/samplepkg
diff options
context:
space:
mode:
Diffstat (limited to 'testdata/samplepkg')
-rw-r--r--testdata/samplepkg/sample.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/testdata/samplepkg/sample.go b/testdata/samplepkg/sample.go
new file mode 100644
index 0000000..ff80b69
--- /dev/null
+++ b/testdata/samplepkg/sample.go
@@ -0,0 +1,20 @@
+package samplepkg
+
+import "context"
+
+type UserCfg struct {
+ userNum int
+}
+
+func Handle(ctx context.Context, userNum int) int {
+ resultVal := userNum + 1
+
+ for idx, usr := range []string{"a", "b"} {
+ _ = idx
+ _ = usr
+ }
+
+ _ = ctx
+
+ return resultVal
+}