aboutsummaryrefslogtreecommitdiff
path: root/test/typeparam/subdict.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/typeparam/subdict.go')
-rw-r--r--test/typeparam/subdict.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/typeparam/subdict.go b/test/typeparam/subdict.go
index c899af6d0d..b4e84baf8a 100644
--- a/test/typeparam/subdict.go
+++ b/test/typeparam/subdict.go
@@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// Test cases where a main dictionary is needed inside a generic function/method, because
+// Test cases where a main dictionary is needed inside a generic function/method, because
// we are calling a method on a fully-instantiated type or a fully-instantiated function.
// (probably not common situations, of course)
@@ -33,7 +33,6 @@ func (v *value[T]) get(def T) T {
}
}
-
func main() {
var s value[string]
if got, want := s.get("ab"), ""; got != want {