summaryrefslogtreecommitdiff
path: root/Zend/tests/bug69832.phpt
blob: 2617c7b24d49f34ed49a804b50a2b8d876cfe530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
--TEST--
Bug #69832 (Assertion failed in zend_compile_const_expr_magic_const)
--FILE--
<?php

class Test {
	public $foo = [Bar::A, __CLASS__][__CLASS__ != ""];
	public $bar = Bar::A && __CLASS__;
	public $baz = Bar::A ?: __CLASS__;
	public $buzz = Bar::A ? __CLASS__ : 0;
}

eval(<<<'PHP'
class Bar {
	const A = 1;
}
PHP
);

$t = new Test;
var_dump($t->foo);
var_dump($t->bar);
var_dump($t->baz);
var_dump($t->buzz);

?>
--EXPECT--
string(4) "Test"
bool(true)
int(1)
string(4) "Test"