xref: /php-src/ext/spl/tests/SplFileInfo_001.phpt (revision 39547438)
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