See a function like this:
func issue57077(s []int) (left, right []int) {
middle := len(s) / 2 // ERROR "Proved Div64 is unsigned$"
left = s[:middle] // ERROR "Proved IsSliceInBounds$"
right = s[middle:] // ERROR "Proved IsSliceInBounds$"
return
}
As part of working on go I frequently need to open the issue related to this to find the relevant context.
However this function does not have any documentation that would include a link I could click, so I manually copy paste instead.
I wished when looking up the documentation for this function would include a link to https://go.dev/issues/57077.
Other forms:
- 43
func issue[0-9]+\(
- 5
func Issue[0-9]+\(
- 83
func Test[0-9]+\(
- 276
func TestIssue[0-9]+\(
- 1
func Benchmark[0-9]+\(
- 6
func BenchmarkIssue[0-9]+\(
See a function like this:
As part of working on go I frequently need to open the issue related to this to find the relevant context.
However this function does not have any documentation that would include a link I could click, so I manually copy paste instead.
I wished when looking up the documentation for this function would include a link to https://go.dev/issues/57077.
Other forms:
func issue[0-9]+\(func Issue[0-9]+\(func Test[0-9]+\(func TestIssue[0-9]+\(func Benchmark[0-9]+\(func BenchmarkIssue[0-9]+\(