diff options
| author | Fuwn <[email protected]> | 2026-02-27 07:13:17 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-27 07:13:17 +0000 |
| commit | 856e2994722e2e7f67b47d55b8e673ddabcebe83 (patch) | |
| tree | 5a4e108384038eaa072d8e6c5f71ab68901fb431 /testdata/samplepkg/sample.go | |
| download | kivia-main.tar.xz kivia-main.zip | |
Diffstat (limited to 'testdata/samplepkg/sample.go')
| -rw-r--r-- | testdata/samplepkg/sample.go | 20 |
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 +} |