Add trivial entry points to various tests
[hiphop-php.git] / hphp / test / zend / good / tests / classes / ctor_in_interface_01.php
blob67514377e6fee61d5bf6d16984a58f56fe4f0103
1 <?hh
2 interface constr
4 function __construct();
7 class implem implements constr
9 function __construct($a)
14 <<__EntryPoint>>
15 function main(): void {
16 echo "Done.\n";