cvs: ZendEngine2(PHP_5_3) /tests bug45910_2.phpt
[email protected] ("Felipe Pena")
| Newsgroups | php.zend-engine.cvs |
|---|---|
| Message-ID | <cvsfelipe1219694154@cvsserver> |
felipe Mon Aug 25 19:55:54 2008 UTC
Added files: (Branch: PHP_5_3)
/ZendEngine2/tests bug45910_2.phpt
Log:
- New test
http://cvs.php.net/viewvc.cgi/ZendEngine2/tests/bug45910_2.phpt?view=markup&rev=1.1
Index: ZendEngine2/tests/bug45910_2.phpt
+++ ZendEngine2/tests/bug45910_2.phpt
--TEST--
Bug #45910.2 (Cannot declare self-referencing constant)
--FILE--
<?php
class foo {
const AAA = 'x';
const BBB = 'a';
const CCC = 'a';
const DDD = self::AAA;
private static $foo = array(
self::BBB => 'a',
self::CCC => 'b',
self::DDD => 11
);
public static function test() {
self::$foo;
}
}
foo::test();
print 1;
?>
--EXPECT--
1