<?php final class C { public $p; } function slow($x) { echo $x->p; } function fast(C $x) { echo $x->p; } slow(new C()); fast(new C());
You have javascript disabled. You will not be able to edit any code.