xref: /PHP-7.4/Zend/tests/return_types/003.phpt (revision d679f022)
1--TEST--
2Returned 1, expected array
3--FILE--
4<?php
5function test1() : array {
6    return 1;
7}
8test1();
9--EXPECTF--
10Fatal error: Uncaught TypeError: Return value of test1() must be of the type array, int returned in %s:%d
11Stack trace:
12#0 %s(%d): test1()
13#1 {main}
14  thrown in %s on line %d
15