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