xref: /PHP-7.2/Zend/tests/return_types/027.phpt (revision f1d7e3ca)
1--TEST--
2Return type of parent is allowed in closure
3--FILE--
4<?php
5
6class A {}
7class B extends A {}
8
9$c = function(parent $x): parent { return $x; };
10var_dump($c->bindTo(null, 'B')(new A));
11--EXPECTF--
12object(A)#%d (0) {
13}
14