summaryrefslogtreecommitdiff
path: root/Zend/tests/type_declarations/typed_properties_protected_inheritance_mismatch.phpt
blob: 1f03b5580f4c5370578e7a6e6bd7fc80eb9f212a (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Typed property invariance violation for protected properties
--FILE--
<?php

class A { protected int $x; }
class B extends A { protected $x; }

?>
--EXPECTF--
Fatal error: Type of B::$x must be int (as in class A) in %s on line %d