Updating submodules
[hiphop-php.git] / hphp / test / slow / reified-call.php
blobdcdcf9fd9ad3fcf29bdc5504550d8f2f196565c8
1 <?hh
3 function foo<reify T>() { T::bar(); }
4 class C { public static function bar() { echo "ok\n"; } }
6 <<__EntryPoint>>
7 function main() {
8 foo<C>();