const go/constant.Int

13 uses

	go/constant (current package)
		kind_string.go#L14: 	_ = x[Int-3]
		value.go#L40: 	Int
		value.go#L106: func (int64Val) Kind() Kind   { return Int }
		value.go#L107: func (intVal) Kind() Kind     { return Int }

	go/types
		const.go#L44: 	if x.val.Kind() == constant.Int && constant.BitLen(x.val) > prec {
		const.go#L84: 		if x.Kind() != constant.Int {
		expr.go#L599: 	if allInteger(x.typ) || isUntyped(x.typ) && xval != nil && xval.Kind() == constant.Int {
		expr.go#L618: 		if yval.Kind() == constant.Int && constant.Sign(yval) < 0 {
		expr.go#L1185: 		if i.Kind() != constant.Int {
		expr.go#L1191: 	case constant.Int:
		stmt.go#L204: 	case constant.Int:
		typexpr.go#L535: 		if val := constant.ToInt(x.val); val.Kind() == constant.Int {

	golang.org/x/tools/internal/gcimporter
		iexport.go#L1084: 	} else if num, denom := constant.Num(x), constant.Denom(x); num.Kind() == constant.Int {