root/Zend/tests/bug67436/b.php

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. test

<?php

class b extends a {
        public function test() {
                echo __METHOD__ . "()\n";
                parent::test();
        }
}

/* [<][>][^][v][top][bottom][index][help] */