summaryrefslogtreecommitdiff
path: root/Zend/tests/bug41633_3.phpt
blob: dd4b75c9d935016a8436ad41d1aa31af1357a7a7 (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 Error: Cannot declare self-referencing constant 'Foo::B' in %sbug41633_3.php:%d
Stack trace:
#0 {main}
  thrown in %sbug41633_3.php on line %d