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

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

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