summaryrefslogtreecommitdiff
path: root/Zend/tests/bug41633_3.phpt
blob: 7b9452db85d4d91954adbca7a7a4a49d0e95578c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Bug #41633.3 (Crash instantiating classes with self-referencing constants)
--FILE--
<?php
class Foo {
	const A = Foo::B;
	const B = Foo::A;
}
echo Foo::A;
?>
--EXPECTF--
Fatal error: Cannot declare self-referencing constant 'Foo::B' in %sbug41633_3.php on line %d