Current File : //opt/RZphp74/includes/doc/PhpDocumentor/Documentation/tests/bug-566600.php
<?php
/**
* @package tests
*/
/**
* tests linking to methods and vars
*/
class a{
var $a;
function b(){}
var $c;
}
/**
* test links to methods and vars
*
* @see a::$a
* @see a::d()
*/
function a(){}
?>