Add trivial entry points to various tests
[hiphop-php.git] / hphp / test / zend / good / tests / classes / interface_must_be_implemented.php
blob1ca1f659a648795ed356160d2c78c2b97ad1f77d
1 <?hh
3 interface if_a {
4 function f_a();
7 class derived_a implements if_a {
10 <<__EntryPoint>>
11 function main(): void {
12 echo "Done.\n";