503f75d08b
These names don't make sense now that we run both suites the same way.
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();
|