test: move map delete test to nil.go
No need for a separate test for this.
R=golang-dev, minux.ma, rsc
CC=golang-dev
https://golang.org/cl/6941045
diff --git a/test/fixedbugs/issue4535.go b/test/fixedbugs/issue4535.go
deleted file mode 100644
index 4511393..0000000
--- a/test/fixedbugs/issue4535.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// run
-
-// Copyright 2012 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-func main() {
- var m map[int]int
- delete(m, 0)
-}
diff --git a/test/nil.go b/test/nil.go
index 6d90f50..44ca79e 100644
--- a/test/nil.go
+++ b/test/nil.go
@@ -147,6 +147,9 @@
panic(v)
}
+ // can delete (non-existent) entries
+ delete(m, 2)
+
// but cannot be written to
shouldPanic(func() {
m[2] = 3