<?php
class Test
{
private $baz = 1;
public static function foo()
{
echo "foo\n";
}
public function bar()
{
echo "bar\n";
$this->foo();
$this::foo();
self::foo();
self::baz();
}
public function baz()
{
printf("baz = %d\n", $this->baz);
}
}
$test = new Test;
$test->bar();
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in /in/DnSUk on line 16
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_PAAMAYIM_NEKUDOTAYIM in /in/DnSUk on line 16
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/DnSUk on line 5
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/DnSUk on line 5
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/DnSUk on line 5
Process exited with code 255.