cvs: ZendEngine2 /tests bug45910_2.phpt

"Felipe Pena" <[email protected]>
Newsgroups gmane.comp.php.cvs.zend
Message-ID <cvsfelipe1219694136@cvsserver>
felipe		Mon Aug 25 19:55:36 2008 UTC

  Added files:                 
    /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



-- 
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.