internal/goexperiment: remove the synctest GOEXPERIMENT

synctest package is enabled by default and the synctest
goexperiment does nothing after CL 709355.

Change-Id: Ia96b070d5f3779ae7c38a9044f754e716a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/709555
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
This commit is contained in:
Mateusz Poliwczak 2025-10-06 20:54:27 +02:00
parent c1e6e49d5d
commit 4c0fd3a2b4
3 changed files with 0 additions and 19 deletions

View file

@ -1,8 +0,0 @@
// Code generated by mkconsts.go. DO NOT EDIT.
//go:build !goexperiment.synctest
package goexperiment
const Synctest = false
const SynctestInt = 0

View file

@ -1,8 +0,0 @@
// Code generated by mkconsts.go. DO NOT EDIT.
//go:build goexperiment.synctest
package goexperiment
const Synctest = true
const SynctestInt = 1

View file

@ -100,9 +100,6 @@ type Flags struct {
// inlining phase within the Go compiler.
NewInliner bool
// Synctest enables the testing/synctest package.
Synctest bool
// Dwarf5 enables DWARF version 5 debug info generation.
Dwarf5 bool