aboutsummaryrefslogtreecommitdiff
path: root/test/const.go
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2008-08-20 15:43:12 -0700
committerRobert Griesemer <gri@golang.org>2008-08-20 15:43:12 -0700
commita9af1841318d807e04a2e0b6494ef3821811957d (patch)
tree3323ec5344daf0f6f4ef94155ea7db56ab75d876 /test/const.go
parentb59b551be7e31ed970b97652b2baae2041570d18 (diff)
downloadgo-a9af1841318d807e04a2e0b6494ef3821811957d.tar.gz
go-a9af1841318d807e04a2e0b6494ef3821811957d.zip
bugs related to constat types
R=r DELTA=10 (6 added, 4 deleted, 0 changed) OCL=14348 CL=14348
Diffstat (limited to 'test/const.go')
-rw-r--r--test/const.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/const.go b/test/const.go
index ced52dc224..f16a8c4b75 100644
--- a/test/const.go
+++ b/test/const.go
@@ -89,10 +89,6 @@ func floats() {
assert(i == f0, "i == f0");
i = fm1;
assert(i == fm1, "i == fm1");
- i = f1;
- assert(i == f1, "i == f1");
- i = f1e3;
- assert(i == f1e3, "i == f1e3");
// verify that all are assignable as floats
var f float64;