blob: c7eeb37eaeb67fe06f71803f5ee8e1128a51d3f7 [file] [log] [blame]
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +00001Pre-existing gopls issues with line number changes should not be reported as regressions
2
3-- p.go --
4package p
5
6func F() {
7 x := 42
8}
9
10-- .commit --
11Initial commit with existing gopls issue
12
13-- p.go --
14package p
15
16// Change the line number of the unused variable
17
18func F() {
19 x := 42
20}
21
22-- .commit --
23Add comments that change line numbers
24
25-- .run_test --
26OK