You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When defining Go native values, such as math.MinInt8, the introduced type is int, whereas it should be untyped int. this will cause a type check error(on type checker.)
ie.
package main
import"math"funcmain() {
varaint8=1println(a==math.MinInt8)
}
this happens when test xxx.native.
The text was updated successfully, but these errors were encountered:
When defining Go native values, such as math.MinInt8, the introduced type is
int
, whereas it should beuntyped int
. this will cause a type check error(on type checker.)ie.
this happens when test xxx.native.
The text was updated successfully, but these errors were encountered: