--TEST-- Redeclare inherited public property as public static. --FILE-- p . "\n"; } } class B extends A { public static $p = "B::p (static)"; static function showB() { echo self::$p . "\n"; } } $a = new A; $a->showA(); $b = new B; $b->showA(); B::showB(); ?> --EXPECTF-- Fatal error: Cannot redeclare non static A::$p as static B::$p in %s on line 18