| commit | e92b7538102ed9ea1402fb8ce4d948da27ffd456 | [log] [tgz] |
|---|---|---|
| author | Robert Griesemer <gri@golang.org> | Fri Jun 06 15:53:14 2008 -0700 |
| committer | Robert Griesemer <gri@golang.org> | Fri Jun 06 15:53:14 2008 -0700 |
| tree | 43028db105ceb59b039061a046904bd668df2b7e | |
| parent | 2f538554f6ce8ec8b0cdb3c448759e1670cad1ff [diff] [blame] |
- fixed a few tests and added 3 incorrectly succeeding tests - updated go_lang.txt to be more uniform and match the implementation - made makehtml work on Mac - fixed a couple of bugs in go.atg SVN=121520
diff --git a/test/if.go b/test/if.go index 2018f70..beb7d6b 100644 --- a/test/if.go +++ b/test/if.go
@@ -50,7 +50,7 @@ assertequal(count, 1, "if empty"); count = 0; - if one := 1; { + if one := 1; true { count = count + one; } assertequal(count, 1, "if empty one");