Add trivial entry points to various tests
[hiphop-php.git] / hphp / test / slow / class_type_constant / type_constant12.php
blobb25ec05aa8538db06fef345be02d80c8dfdc5a0a
1 <?hh
3 interface I {
4 const T = 0;
7 abstract class P {
8 const type T = int;
11 class C extends P implements I {}
13 <<__EntryPoint>>
14 function main(): void {
15 echo "Done.\n";