summaryrefslogtreecommitdiff
path: root/Zend/tests/ctor_promotion_repeated_prop.phpt
blob: 6f4a9ffd02d1eeba62cdff9a45d598b5f3083a65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--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