summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFileInfo_001.phpt
blob: 72060f0dba6846135ccf16af36286c3cebf9a880 (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Testing SplFileInfo calling the constructor twice
--FILE--
<?php
$x = new splfileinfo(1);
$x->__construct(1);

echo "done!\n";
?>
--EXPECT--
done!