php-src/Zend/tests/ctor_promotion_repeated_prop.phpt
2020-06-05 15:15:51 +02:00

15 lines
228 B
PHP

--TEST--
Clash between promoted and explicit property
--FILE--
<?php
class Test {
public $prop;
public function __construct(public $prop) {}
}
?>
--EXPECTF--
Fatal error: Cannot redeclare Test::$prop in %s on line %d