summaryrefslogtreecommitdiff
path: root/Zend/tests/bug41633_2.phpt
blob: d64092c691fea6faa501e30287d2f3ec79608353 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Bug #41633.2 (Undefined class constants must not be substituted by strings)
--FILE--
<?php
class Foo {
	const A = self::B;
}
echo Foo::A."\n";
?>
--EXPECTF--
Fatal error: Uncaught exception 'EngineException' with message 'Undefined class constant 'self::B'' in %sbug41633_2.php:5
Stack trace:
#0 {main}
  thrown in %sbug41633_2.php on line 5