-
Notifications
You must be signed in to change notification settings - Fork 18.8k
Closed
Labels
FrozenDueToAgeNeedsFixThe path to resolution is known, but the work has not been done.The path to resolution is known, but the work has not been done.
Milestone
Description
What version of Go are you using (go version)?
$ go version go version go1.13.4 darwin/amd64
Does this issue reproduce with the latest release?
Yes. See: https://play.golang.org/p/zhDzRup9BRP
What operating system and processor architecture are you using (go env)?
go env Output
$ go env GO111MODULE="" GOARCH="amd64" GOBIN="" GOCACHE="/Users/artem/Library/Caches/go-build" GOENV="/Users/artem/Library/Application Support/go/env" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="darwin" GOPATH="/Users/artem/parsec/fed:/Users/artem/parsec/fed/_vendor" GOPROXY="https://proxy.golang.org,direct" GOROOT="/usr/local/Cellar/go/1.13.4/libexec" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/usr/local/Cellar/go/1.13.4/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/n0/2pcvtf912dz4qq61kl72vsg00000gn/T/go-build253354351=/tmp/go-build -gno-record-gcc-switches -fno-common"
What did you do?
https://play.golang.org/p/zhDzRup9BRP
package main
import (
"fmt"
"time"
)
func main() {
loc, _ := time.LoadLocation("America/Los_Angeles")
d1 := time.Date(2037, 6, 3, 11, 0, 0, 0, loc)
d2 := time.Date(2038, 6, 3, 11, 0, 0, 0, loc)
fmt.Println(d1)
fmt.Println(d2)
}What did you expect to see?
2037-06-03 11:00:00 -0700 PDT
2038-06-03 11:00:00 -0700 PDT
This is behavior that has been produced by other time processing tools and libraries. For example:
$ TZ='America/Los_Angeles' date --date="@2159200800"
Thu Jun 3 11:00:00 PDT 2038What did you see instead?
2037-06-03 11:00:00 -0700 PDT
2038-06-03 11:00:00 -0800 PST
Metadata
Metadata
Assignees
Labels
FrozenDueToAgeNeedsFixThe path to resolution is known, but the work has not been done.The path to resolution is known, but the work has not been done.