summaryrefslogtreecommitdiff
path: root/Zend/tests/bug71922.phpt
blob: 986254cab7326f6ef7975f0c003bce4678b5af32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Bug #71922: Crash on assert(new class{});
--INI--
zend.assertions=1
assert.exception=1
--FILE--
<?php

try {
    assert(0 && new class {
    } && new class(42) extends stdclass {
    });
} catch (AssertionError $e) {
    echo "Assertion failure: ", $e->getMessage(), "\n";
}

?>
--EXPECT--
Assertion failure: assert(0 && new class {
} && new class(42) extends stdclass {
})