Basic flow analysis on if statements
[hiphop-php.git] / hphp / test / slow / too-many-params-lambda.php
blobefe59d483949671300b37103d574a08853f14409
1 <?hh
3 class A {
4 public function get(): mixed {
5 () ==> {};
6 () ==> {};
7 return () ==> {};
11 <<__EntryPoint>>
12 function main(): void {
13 $a = new A();
14 $lambda = $a->get();
15 $lambda(1, 2, 3);