Annotation of embedaddon/php/tests/classes/static_properties_undeclared_read.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Reading a non-existent static property
        !             3: --FILE--
        !             4: <?php
        !             5: Class C {}
        !             6: echo C::$p;
        !             7: ?>
        !             8: --EXPECTF--
        !             9: Fatal error: Access to undeclared static property: C::$p in %s on line 3

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