root/Zend/tests/bug67436/a.php

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

DEFINITIONS

This source file includes following definitions.
  1. test
  2. staticTest

<?php

class a {
        public function test($arg = c::TESTCONSTANT) {
                echo __METHOD__ . "($arg)\n";
        }

        static public function staticTest() {
        }
}

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