From a83befa0d111a0ba6fac52d763e93c76a2ef94d4 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 19 Dec 2025 12:52:30 +0100 Subject: all: use any instead of interface{} Any is the preferred over interface{} now in Go. --- prog/mutation_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prog/mutation_test.go') diff --git a/prog/mutation_test.go b/prog/mutation_test.go index d9734b482..9b90fc837 100644 --- a/prog/mutation_test.go +++ b/prog/mutation_test.go @@ -502,4 +502,4 @@ func BenchmarkStoreLoadInt(b *testing.B) { } } -var sink interface{} +var sink any -- cgit mrf-deployment