summaryrefslogtreecommitdiff
path: root/Zend/tests/bug41633_3.phpt
blob: bf0e95db8101e34ef959ddc4a7489a6bb606b872 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--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: Uncaught exception 'EngineException' with message 'Cannot declare self-referencing constant 'Foo::B'' in %sbug41633_3.php:%d
Stack trace:
#0 {main}
  thrown in %sbug41633_3.php on line %d