aboutsummaryrefslogtreecommitdiff
path: root/test/map1.go
diff options
context:
space:
mode:
authorAlberto Donizetti <alb.donizetti@gmail.com>2017-04-22 15:28:58 +0200
committerAlberto Donizetti <alb.donizetti@gmail.com>2017-04-24 12:37:49 +0000
commit1737aef270a8954f3f8718beb55d6ddfc1cf5d21 (patch)
tree6173eb7a020ea88e61613caa2586236cdb1ec8de /test/map1.go
parent26536b2f327781ad76afe22109b94b7b193407bf (diff)
downloadgo-1737aef270a8954f3f8718beb55d6ddfc1cf5d21.tar.gz
go-1737aef270a8954f3f8718beb55d6ddfc1cf5d21.zip
cmd/compile: more error position tests for the typechecker
This change adds line position tests for several yyerror calls in the typechecker that are currently not tested in any way. Untested yyerror calls were found by replacing them with yerrorl(src.NoXPos, ...) (thus destroying position information in the error), and then running the test suite. No failures means no test coverage for the relevant yyerror call. For #19683 Change-Id: Iedb3d2f02141b332e9bfa76dbf5ae930ad2fddc3 Reviewed-on: https://go-review.googlesource.com/41477 Run-TryBot: Alberto Donizetti <alb.donizetti@gmail.com> Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
Diffstat (limited to 'test/map1.go')
-rw-r--r--test/map1.go10
1 files changed, 8 insertions, 2 deletions
diff --git a/test/map1.go b/test/map1.go
index d3c0a9093b..498c2ec45b 100644
--- a/test/map1.go
+++ b/test/map1.go
@@ -9,8 +9,6 @@
package main
-func main() {}
-
type v bool
var (
@@ -60,3 +58,11 @@ type T5 *int
type T6 struct { F T5 }
type T7 *T4
type T8 struct { F *T7 }
+
+func main() {
+ m := make(map[int]int)
+ delete() // ERROR "missing arguments"
+ delete(m) // ERROR "missing second \(key\) argument"
+ delete(m, 2, 3) // ERROR "too many arguments"
+ delete(1, m) // ERROR "first argument to delete must be map"
+} \ No newline at end of file