Updating submodules
[hiphop-php.git] / hphp / test / slow / memoize_on_lambda2.php
blob975257def2669451d905426facf8c02956a8e512
1 <?hh
3 function f() {
4 $a0 = 1;
5 $a = <<__Memoize>> function () use($a0) : int {
6 return 1;
7 };