diff --git a/src/testsuite.in b/src/testsuite.in
index bbd0606de16d17f6ce2b75b35500bf2f2c0a58f7..bfc14154a31ee072489db04feefede0153a473f4 100644
--- a/src/testsuite.in
+++ b/src/testsuite.in
@@ -1,4 +1,4 @@
-stest_true([["$Id: testsuite.in,v 1.168 1999/05/03 18:16:54 hubbe Exp $"]])
+stest_true([["$Id: testsuite.in,v 1.169 1999/05/09 22:06:08 mirar Exp $"]])
 cond([[all_constants()->_verify_internals]],
 [[
   test_do(_verify_internals())
@@ -52,6 +52,8 @@ test_any([[ int a,b; [a,b]=({1,2}); return a]],1)
 test_any([[ int a,b; [a,b]=({1,2}); return b]],2)
 test_any([[ int a,b; [ [a],b]=({ ({ 1 }) ,2}); return a]],1)
 test_any([[ int a,b; [ [a],b]=({ ({ 1 }) ,2}); return b]],2)
+test_any([[ int a; catch { [a]=({1,2}); }; return 1]],1)
+test_any([[ int a,b; catch { [a,b]=({1}); }; return 1]],1)
 test_compile_error([[ default ; ]])
 test_compile_error([[ 0999; ]])
 test_compile_error([[ int a,b; [a,b]++; ]])