<?php class B { protected static $c = 1; } class C1 extends B { function f(B $x) { return $x::$c; } } class C2 extends B { protected static $c = 2; } var_dump((new C1)->f(new C2));
You have javascript disabled. You will not be able to edit any code.