xref: /PHP-5.5/ext/spl/tests/SplFileInfo_001.phpt (revision af2fc625)
1--TEST--
2Testing SplFileInfo calling the constructor twice
3--FILE--
4<?php
5$x = new splfileinfo(1);
6$x->__construct(1);
7
8echo "done!\n";
9?>
10--EXPECT--
11done!
12