xref: /PHP-7.4/Zend/tests/bug70293.phpt (revision 34834c58)
1--TEST--
2Crash with specific assertions and zend.assertions=-1
3--INI--
4zend.assertions=-1
5--FILE--
6<?php
7
8function f() {
9    assert(@$a ?: 1);
10    echo "OK";
11};
12f();
13
14?>
15--EXPECT--
16OK
17