php-src/Zend/tests/bug30702.phpt
Steph Fox 6d8760677d - killed off UEXPECT
- altered EXPECT for parser errors. This may or may not be a Good Thing.
2008-05-26 14:33:44 +00:00

40 lines
490 B
PHP

--TEST--
Bug #30702 (cannot initialize class variable from class constant)
--FILE--
<?php
class foo {
const C1=1;
}
class bar extends foo {
const C2=2;
public $c1=bar::C1;
public $c2=bar::C2;
public $c3=self::C1;
public $c4=self::C2;
public $c5=foo::C1;
public $c6=parent::C1;
}
$x= new bar();
var_dump($x);
?>
--EXPECT--
object(bar)#1 (6) {
[u"c1"]=>
int(1)
[u"c2"]=>
int(2)
[u"c3"]=>
int(1)
[u"c4"]=>
int(2)
[u"c5"]=>
int(1)
[u"c6"]=>
int(1)
}