blob: 56f155790beb1fba992d018e7c6d0bf5e3264729 [file] [log] [blame]
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +00001Detect newly introduced gopls issues
2
3-- .commit --
4Initial commit
5
6-- p.go --
7package p
8
9func F() {
10 return
11 panic("unreachable")
12}
13
14-- .commit --
15Add file with gopls issues
16
17-- .run_test --
18Gopls check issues detected:
19
201. /PATH/TO/REPO/p.go:5:2-22: unreachable code
21
22IMPORTANT: Only fix new gopls check issues in parts of the code that you have already edited. Do not change existing code that was not part of your current edits.
23
24
25Please fix before proceeding.