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