summaryrefslogtreecommitdiff
path: root/ext/standard/tests/dir/closedir_without_arg.phpt
blob: 27884c1a2b6456b8ee83feaa99599c18938f74aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Calling closedir() without argument and without opening a directory beforehand
--FILE--
<?php
try {
    closedir();
} catch (TypeError $e) {
    echo $e->getMessage(), "\n";
}
?>
--EXPECT--
No resource supplied