diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2015-08-02 16:17:00 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2015-08-02 16:17:00 (GMT) |
commit | e9e00655085d4adea3b0d81b30827c598cb4dcc1 (patch) | |
tree | be086c2ef7f7e58c8c3e14705acd13ac0eaf7be7 /tests | |
parent | baede06dd8e3f85ac6630f1af5d84e159871ea3f (diff) | |
download | tcl-e9e00655085d4adea3b0d81b30827c598cb4dcc1.zip tcl-e9e00655085d4adea3b0d81b30827c598cb4dcc1.tar.gz tcl-e9e00655085d4adea3b0d81b30827c598cb4dcc1.tar.bz2 |
And another problem with continue in for-step clauses, this time a problem in how TEBC handled an edge case in the semantics.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/for.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/for.test b/tests/for.test index 6c710bb..1a65274 100644 --- a/tests/for.test +++ b/tests/for.test @@ -1314,7 +1314,7 @@ test for-8.9 {break in for-step clause} { list $i $j $k }} } {2 1 3} -test for-8.10 {continue in for-step clause} knownBug { +test for-8.10 {continue in for-step clause} { apply {{} { for {set k 0} {$k < 3} {incr k} { set j 0 |