aboutsummaryrefslogtreecommitdiff
path: root/regtest.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'regtest.tcl')
-rw-r--r--regtest.tcl15
1 files changed, 15 insertions, 0 deletions
diff --git a/regtest.tcl b/regtest.tcl
index 28bd43d..4f4b459 100644
--- a/regtest.tcl
+++ b/regtest.tcl
@@ -252,6 +252,21 @@ $f writable {incr y}
$f close
puts "TEST 34 PASSED"
+# REGTEST 35
+# caching of command resolution after local proc deleted
+set result {}
+proc x {} { }
+proc p {n} {
+ if {$n in {2 3}} {
+ local proc x {} { }
+ }
+ x
+}
+foreach i {1 2 3 4} {
+ p $i
+}
+puts "TEST 35 PASSED"
+
# TAKE THE FOLLOWING puts AS LAST LINE
puts "--- ALL TESTS PASSED ---"