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