Move experimental/symbolizer/{tool,test} to debugging/symbolizer
[hiphop-php.git] / hphp / test / slow / memoize_on_lambda2.php
blob63e21fae84ce6c86295518e4b3bac7c8912ce9bb
1 <?hh
3 function f() :mixed{
4 $a0 = 1;
5 $a = <<__Memoize>> function () use($a0) : int {
6 return 1;
7 };