Open
Description
What version of Go are you using (go version
)?
$ go version go version go1.13 darwin/amd64
Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (go env
)?
go env
Output
$ go env GO111MODULE="" GOARCH="amd64" GOBIN="" GOCACHE="/Users/viacheslav.poturaev/Library/Caches/go-build" GOENV="/Users/viacheslav.poturaev/Library/Application Support/go/env" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GONOPROXY="github.com/hellofresh" GONOSUMDB="github.com/hellofresh" GOOS="darwin" GOPATH="/Users/viacheslav.poturaev/go" GOPRIVATE="github.com/hellofresh" GOPROXY="https://proxy.golang.org,direct" GOROOT="/usr/local/Cellar/go/1.13/libexec" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/usr/local/Cellar/go/1.13/libexec/pkg/tool/darwin_amd64" GCCGO="gccgo" AR="ar" CC="clang" CXX="clang++" CGO_ENABLED="1" GOMOD="" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/h7/7qg3nbt91bb6mgk2xtqqpwc40000gp/T/go-build850653985=/tmp/go-build -gno-record-gcc-switches -fno-common"
What did you do?
I've decoded a JSON value of "123"
into json.Number
.
https://play.golang.org/p/9Nwjn3rBFxI
What did you expect to see?
I've expected to see an error.
What did you see instead?
I've seen a successful result and an int64 value of 123
accessible with .Int64()
.
I could not find any documentation that json.Number
accepts quoted string values by default and was expecting the opposite (as per "being precise" motivation expressed in #22463 (comment)).
Not sure if this is a documentation or implementation issue.