File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ GH-16293: Exception in assert() callback with bail enabled
33--FILE--
44<?php
55
6- assert_options (ASSERT_EXCEPTION , 0 );
7- assert_options (ASSERT_BAIL , 1 );
8- assert_options (ASSERT_CALLBACK , 'f1 ' );
6+ @ assert_options (ASSERT_EXCEPTION , 0 );
7+ @ assert_options (ASSERT_BAIL , 1 );
8+ @ assert_options (ASSERT_CALLBACK , 'f1 ' );
99assert (false );
1010
1111?>
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ GH-16293: Exception in assert() callback with bail enabled
33--FILE--
44<?php
55
6- assert_options (ASSERT_EXCEPTION , 0 );
7- assert_options (ASSERT_BAIL , 1 );
8- assert_options (ASSERT_CALLBACK , function () {
6+ @ assert_options (ASSERT_EXCEPTION , 0 );
7+ @ assert_options (ASSERT_BAIL , 1 );
8+ @ assert_options (ASSERT_CALLBACK , function () {
99 throw new Exception ('Boo ' );
1010});
1111assert (false );
You can’t perform that action at this time.
0 commit comments