1--TEST--
2FileInfo - Calling the constructor twice
3--EXTENSIONS--
4fileinfo
5--FILE--
6<?php
7
8$x = new finfo;
9$x->__construct();
10
11echo "done!\n";
12
13?>
14--EXPECT--
15done!
16