aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs
diff options
context:
space:
mode:
authorCherry Mui <cherryyz@google.com>2025-07-30 16:16:48 -0400
committerCherry Mui <cherryyz@google.com>2025-08-12 06:28:26 -0700
commit00a7bdcb55dbaffcf73e42c9c11e37823cc6e8cc (patch)
treebbbf6987eb78ffe1430d76cb03fece8de406588c /test/fixedbugs
parent74421a305b4d76259d9860529fe59e8fc9bad81e (diff)
downloadgo-00a7bdcb55dbaffcf73e42c9c11e37823cc6e8cc.tar.xz
all: delete aliastypeparams GOEXPERIMENT
Always enable aliastypeparams and remove the GOEXPERIMENT. Change-Id: Ic38fe25b0bba312a7f83f7bb94b57ab75ce0f0c3 Reviewed-on: https://go-review.googlesource.com/c/go/+/691956 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Mark Freeman <markfreeman@google.com> Reviewed-by: Michael Knyszek <mknyszek@google.com>
Diffstat (limited to 'test/fixedbugs')
-rw-r--r--test/fixedbugs/issue68054.go2
-rw-r--r--test/fixedbugs/issue68526.dir/a/a.go2
-rw-r--r--test/fixedbugs/issue68526.dir/main.go2
-rw-r--r--test/fixedbugs/issue68526.go2
-rw-r--r--test/fixedbugs/issue68580.go2
5 files changed, 3 insertions, 7 deletions
diff --git a/test/fixedbugs/issue68054.go b/test/fixedbugs/issue68054.go
index 5409fc9081..e9f95efa14 100644
--- a/test/fixedbugs/issue68054.go
+++ b/test/fixedbugs/issue68054.go
@@ -1,4 +1,4 @@
-// compile -goexperiment aliastypeparams
+// compile
// Copyright 2024 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
diff --git a/test/fixedbugs/issue68526.dir/a/a.go b/test/fixedbugs/issue68526.dir/a/a.go
index 83462c7fb9..6249eb59df 100644
--- a/test/fixedbugs/issue68526.dir/a/a.go
+++ b/test/fixedbugs/issue68526.dir/a/a.go
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-//go:build goexperiment.aliastypeparams
-
package a
type A[T any] = struct{ F T }
diff --git a/test/fixedbugs/issue68526.dir/main.go b/test/fixedbugs/issue68526.dir/main.go
index 966efd7190..8b72ea37b6 100644
--- a/test/fixedbugs/issue68526.dir/main.go
+++ b/test/fixedbugs/issue68526.dir/main.go
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-//go:build goexperiment.aliastypeparams
-
package main
import (
diff --git a/test/fixedbugs/issue68526.go b/test/fixedbugs/issue68526.go
index 3067aa7622..aca6354b7c 100644
--- a/test/fixedbugs/issue68526.go
+++ b/test/fixedbugs/issue68526.go
@@ -1,4 +1,4 @@
-// runindir -goexperiment aliastypeparams -gomodversion "1.23"
+// runindir -gomodversion "1.23"
// Copyright 2024 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
diff --git a/test/fixedbugs/issue68580.go b/test/fixedbugs/issue68580.go
index b60a7447aa..5c25d15b43 100644
--- a/test/fixedbugs/issue68580.go
+++ b/test/fixedbugs/issue68580.go
@@ -1,4 +1,4 @@
-// compile -goexperiment aliastypeparams
+// compile
// Copyright 2024 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style