mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
[dev.unified] all: merge master (5a1c5b8) into dev.unified
Conflicts: - test/run.go Textual conflict adding to the known failures list for the nounified frontend. Merge List: + 2022-06-245a1c5b8ae7cmd/go: add per-package indexing for modules outside mod cache + 2022-06-24b9c4d94fdbcmd/go/internal/list: update help info with Deprecated field + 2022-06-2473475ef035go/types, types2: print qualified object names in cycle errors + 2022-06-243e58ef6cc7go/types, types2: better errors for == when type sets are empty + 2022-06-24d38f1d13fadoc/go1.19: Linux race detector now requires glibc 2.17 + 2022-06-23de5329f1dedebug/dwarf: handle malformed line table with bad program offset + 2022-06-2315605ca827embed: document additional file name restrictions + 2022-06-222e773a3894test: add test that causes gofrontend crash + 2022-06-22ff17b7d0d4cmd/compile: don't use dictionary convert to shaped empty interface + 2022-06-222a3b467d5fcmd/go: make module .zip files group/world readable + 2022-06-22bdab4cf47acmd/go, cmd/link: support failure to create _cgo_import.go + 2022-06-22aca37d16a5cmd/go: avoid indexing modules in GOROOT + 2022-06-22111cdb5848all: update to current golang.org/x/sys revision + 2022-06-224045b1bc3fcmd/compile: fix assert condition in generic method call + 2022-06-226bad7e8243compress/gzip: always close bodyReader in Example_compressingReader + 2022-06-22606c6c371aencoding/xml: check nil pointer in DecodeElement + 2022-06-22f571518139cmd/cgo: dont override declared struct type + 2022-06-2292c9b81447net: don't set netGo = true on Windows with no cgo + 2022-06-22be0b2a393acmd/trace: add basic documentation to main page + 2022-06-22b004c739b5go/types, types2: fix parameter order dependence in type inference + 2022-06-21f2c7e78592spec: document operations which accept []byte|string constrained types + 2022-06-21ab422f2749runtime/trace: ignore fallback stacks in test + 2022-06-2166685fb7dddoc/go1.19: use correct link to sync/atomic docs + 2022-06-214b236b45d0runtime: convert flaky semaphore linearity test into benchmark + 2022-06-21530511bacccmd/go/internal/modindex: avoid walking modules when not needed + 2022-06-21c2d373d5d1cmd/compile: allow 128-bit values to be spilled + 2022-06-2119ed442807test: add regress test for #53477 + 2022-06-203fcbfb07a8doc/go1.19: fix HTML validation issues + 2022-06-18527ace0ffacmd/compile: skip substituting closures in unsafe builtins arguments + 2022-06-17ec58e3f327test: add regress test for #53419 + 2022-06-17103cc661f1cmd/go/internal/modfetch: prevent duplicate hashes in go.sum + 2022-06-17d42a48828fsync: add more notes about Cond behavior + 2022-06-179e2f289754cmd/go/internal/work: log clearer detail for subprocess errors in (*Builder).toolID + 2022-06-17dd2d00f9d5net: fix flaky *TimeoutMustNotReturn tests + 2022-06-176c25ba624fgo/token: delete unused File.set field + 2022-06-169068c6844dcmd/dist: add package . to 'go test' commands + 2022-06-167bad61554eruntime: write much more direct test for semaphore waiter scalability + 2022-06-16f38a580a51cmd/go: add more tracing Change-Id: I912c5879165e03f4d7f8ac3ee9241d50fc92a419
This commit is contained in:
commit
e7100adbca
129 changed files with 1507 additions and 817 deletions
|
|
@ -1966,6 +1966,8 @@ var types2Failures32Bit = setOf(
|
|||
var go118Failures = setOf(
|
||||
"typeparam/nested.go", // 1.18 compiler doesn't support function-local types with generics
|
||||
"typeparam/issue51521.go", // 1.18 compiler produces bad panic message and link error
|
||||
"typeparam/issue53419.go", // 1.18 compiler mishandles generic selector resolution
|
||||
"typeparam/issue53477.go", // 1.18 compiler mishandles generic interface-interface comparisons from value switch statements
|
||||
"typeparam/mdempsky/16.go", // 1.18 compiler uses interface shape type in failed type assertions
|
||||
"typeparam/mdempsky/17.go", // 1.18 compiler mishandles implicit conversions from range loops
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue