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