xref: /PHP-7.1/Zend/tests/return_types/014.phpt (revision 113213f0)
1--TEST--
2Constructors cannot declare a return type
3--FILE--
4<?php
5
6class Foo {
7	function __construct() : Foo {}
8}
9--EXPECTF--
10Fatal error: Constructor %s::%s() cannot declare a return type in %s on line %s
11