Annotation of embedaddon/php/Zend/tests/bug47801.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #47801 (__call() accessed via parent:: operator is provided incorrect method name)
        !             3: --FILE--
        !             4: <?php
        !             5: 
        !             6: class A
        !             7: {
        !             8:   function __call($name, $args)
        !             9:   {
        !            10:     echo("magic method called: $name\n");
        !            11:   }
        !            12: }
        !            13: 
        !            14: class B extends A
        !            15: {
        !            16:   function getFoo()
        !            17:   {
        !            18:     parent::getFoo();
        !            19:   }
        !            20: }
        !            21: 
        !            22: $a = new A();
        !            23: $a->getFoo();
        !            24: 
        !            25: $b = new B();
        !            26: $b->getFoo();
        !            27: 
        !            28: ?>
        !            29: --EXPECT--
        !            30: magic method called: getFoo
        !            31: magic method called: getFoo

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>