summaryrefslogtreecommitdiff
path: root/Zend/tests/typehints/bug76198.phpt
blob: 8d71d02461b9f332cad2a084b2854a1580d05dac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
"iterable" must not be fully qualified
--FILE--
<?php

function foo(): \iterable {
    return [];
}
var_dump(foo());

?>
--EXPECTF--
Fatal error: Type declaration 'iterable' must be unqualified in %s on line %d