--TEST--
FileInfo - Calling the constructor twice
--SKIPIF--
<?php require_once(__DIR__ . '/skipif.inc'); ?>
--FILE--
<?php
$x = new finfo;
$x->__construct();
echo "done!\n";
?>
--EXPECT--
done!