<?php
class Foo {
public static $val = 'Foo';
public static function huh() {
echo self::$val;
}
}
class Bar extends Foo {
public static $val = 'Bar';
}
Foo::huh();
Bar::huh();
Fatal error: Cannot redeclare property static public Foo::$val in class Bar in /in/bfir7 on line 11
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/bfir7 on line 3
Process exited with code 255.
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/bfir7 on line 3
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/bfir7 on line 3
Process exited with code 255.