Rework interp-minstr logic in HHBBC
[hiphop-php.git] / hphp / test / slow / clsmeth / abstr-meth-iface.php
blobc2e2aba29f96331e823139e48c0e60246cd35a17
1 <?hh
3 interface I {
4 static function foo();
7 <<__EntryPoint>>
8 function main() {
9 $f = class_meth(I::class, 'foo');
10 echo "FAIL\n";
11 var_dump($f());