Manually fix or remove typechecker tests with `fun`, `class_meth`, or `inst_meth`
[hiphop-php.git] / hphp / test / slow / clsmeth-nocompat / literal-args-parent.php
blobdc0211a90b896498bef68f5effd4e10db41d4c50
1 <?hh
3 class C { static function foo() {} }
4 class D extends C {
5 static function bar() { return class_meth('parent', 'foo'); }
8 <<__EntryPoint>>
9 function main() {
10 D::bar();
11 echo "FAIL\n";