summaryrefslogtreecommitdiffstats
path: root/tests/proc.test
diff options
context:
space:
mode:
authorgriffin <briang42@easystreet.net>2022-09-16 14:14:35 (GMT)
committergriffin <briang42@easystreet.net>2022-09-16 14:14:35 (GMT)
commit5dcbe3cfeb67425d52a4dcec68ace19e409d5105 (patch)
tree71a75ce67802b8fdb7dcf04b4b11a3dc4de7f651 /tests/proc.test
parent3be920cf8fde24640c4527c8f59024e22eee9930 (diff)
parentd171543388eb0149647f980eb25c80a9bfdadd1e (diff)
downloadtcl-5dcbe3cfeb67425d52a4dcec68ace19e409d5105.zip
tcl-5dcbe3cfeb67425d52a4dcec68ace19e409d5105.tar.gz
tcl-5dcbe3cfeb67425d52a4dcec68ace19e409d5105.tar.bz2
Sync with core-8-branch
Diffstat (limited to 'tests/proc.test')
-rw-r--r--tests/proc.test7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/proc.test b/tests/proc.test
index b87af57..118dca1 100644
--- a/tests/proc.test
+++ b/tests/proc.test
@@ -412,6 +412,13 @@ test proc-7.5 {[631b4c45df] Crash in argument processing} {
unset -nocomplain val
} {}
+test proc-7.6 {[51d5f22997] Crash in argument processing} -cleanup {
+ rename foo {}
+} -body {
+ proc foo {{x {}} {y {}} args} {}
+ foo
+} -result {}
+
# cleanup
catch {rename p ""}