xref: /php-src/Zend/tests/return_types/020.phpt (revision 7aacc705)
1--TEST--
2Exception thrown from function with return type
3--FILE--
4<?php
5function test() : array {
6    throw new Exception();
7}
8
9test();
10?>
11--EXPECTF--
12Fatal error: Uncaught Exception in %s:%d
13Stack trace:
14#0 %s(%d): test()
15#1 {main}
16  thrown in %s on line %d
17