Remove this dirty hack.
The build was successful. Details

This test should now work without it.
This commit is contained in:
Rafal Kupiec 2019-04-16 13:59:10 +02:00
parent 07e3a09999
commit 0b11d59f9f
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 3 additions and 4 deletions

View File

@ -10,12 +10,11 @@ class Program {
}
void main() {
int $i, $j, $k;
for($i = 1; $i < 3; $i++) {
for(int $i = 1; $i < 3; $i++) {
print($i + $this->cycle('a', 'b') + PHP_EOL);
for($j = 1; $j < 5; $j++) {
for(int $j = 1; $j < 5; $j++) {
print(' ' + $j + $this->cycle('a', 'b', 1) + PHP_EOL);
for($k = 1; $k < 3; $k++) {
for(int $k = 1; $k < 3; $k++) {
print(' ' + $k + $this->cycle('c', 'd', 2) + PHP_EOL);
}
}