Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.0.1-2020.1.5 / staticcheck / testdata / src / CheckExtremeComparison / CheckExtremeComparison64.go
1 // +build amd64 arm64 ppc64 ppc64le mips64 mips64le mips64p32 mips64p32le sparc64
2
3 package pkg
4
5 import "math"
6
7 func fn2() {
8         var (
9                 u uint
10                 i int
11         )
12         _ = u > math.MaxUint64 // want `no value of type uint is greater than math\.MaxUint64`
13         _ = i > math.MaxInt64  // want `no value of type int is greater than math\.MaxInt64`
14
15 }