diff options
Diffstat (limited to 'testdata')
| -rw-r--r-- | testdata/dictionary/words.txt | 9 | ||||
| -rw-r--r-- | testdata/samplepkg/sample.go | 20 |
2 files changed, 29 insertions, 0 deletions
diff --git a/testdata/dictionary/words.txt b/testdata/dictionary/words.txt new file mode 100644 index 0000000..e8e9975 --- /dev/null +++ b/testdata/dictionary/words.txt @@ -0,0 +1,9 @@ +option +has +resource +parsed +identifier +allowlist +context +error +expression 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 +} |