363d1bb20f
This change is mostly for FB internal organizational reasons. Building is not effected beyond the fact that the target now lands in hphp/hhvm/hhvm rather than src/hhvm/hhvm.
17 linhas
176 B
PHP
17 linhas
176 B
PHP
<?php
|
|
|
|
function main() {
|
|
if (true) {
|
|
function foo() {
|
|
print("foo a\n");
|
|
}
|
|
} else {
|
|
function foo() {
|
|
print("foo b\n");
|
|
}
|
|
}
|
|
|
|
foo();
|
|
}
|
|
main();
|