summaryrefslogtreecommitdiff
path: root/ext/com_dotnet/tests/bug79248.phpt
blob: c43c1f5338b51207f94b216e812dbba1460332ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Bug #79248 (Traversing empty VT_ARRAY throws com_exception)
--EXTENSIONS--
com_dotnet
--FILE--
<?php
$v = new variant([], VT_ARRAY);
foreach ($v as $el) {
    var_dump($el);
}
echo "done\n";
?>
--EXPECT--
done