1--TEST-- 2parent::$prop::set() ZPP 3--FILE-- 4<?php 5 6class A { 7 public int $prop; 8} 9 10class B extends A { 11 public int $prop { 12 set { 13 parent::$prop::set($value, 42); 14 } 15 } 16} 17 18$b = new B(); 19try { 20 $b->prop = 42; 21} catch (Error $e) { 22 echo $e->getMessage(), "\n"; 23} 24 25?> 26--EXPECT-- 27A::$prop::set() expects exactly 1 argument, 2 given 28