Add more tests.
All checks were successful
The build was successful.

This commit is contained in:
2019-02-05 19:48:38 +01:00
parent ff9e38a480
commit ed8dab7870
4 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
class Program {
function main(string[] $args) {
callback $y = function() {
callback $a = 'printf';
$a("I'm alive\n");
var_dump($a);
};
$y();
var_dump($y);
string $a = 'printf';
var_dump($a);
}
}