Commit ed8c2314 authored by Robert Griesemer's avatar Robert Griesemer

fix build: literal types cannot be parenthesized anymore

R=rsc
CC=golang-dev
https://golang.org/cl/1849055
parent e473f42b
......@@ -172,13 +172,6 @@ func _() {
_ = [...]T{}
_ = []T{}
_ = map[int]T{}
_ = (T){}
_ = (struct{}){}
_ = ([10]T){}
_ = ([...]T){}
_ = ([]T){}
_ = (map[int]T){}
}
......
......@@ -172,13 +172,6 @@ func _() {
_ = [...]T{}
_ = []T{}
_ = map[int]T{}
_ = (T){}
_ = (struct{}){}
_ = ([10]T){}
_ = ([...]T){}
_ = ([]T){}
_ = (map[int]T){}
}
......
......@@ -172,13 +172,6 @@ func _() {
_ = [...]T{}
_ = []T{}
_ = map[int]T{}
_ = (T){}
_ = (struct{}){}
_ = ([10]T){}
_ = ([...]T){}
_ = ([]T){}
_ = (map[int]T){}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment