1.1 ! misho 1: --TEST-- ! 2: Bug #41633.1 (self:: doesn't work for constants) ! 3: --FILE-- ! 4: <?php ! 5: class Foo { ! 6: const A = self::B; ! 7: const B = "ok"; ! 8: } ! 9: echo Foo::A."\n"; ! 10: ?> ! 11: --EXPECT-- ! 12: ok