mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
fix bug 420
This commit is contained in:
Executable
+6
@@ -0,0 +1,6 @@
|
||||
int[] a = new int[] {
|
||||
1, 2, 3, 4, 5
|
||||
};
|
||||
for (int i: a) {
|
||||
print(i);
|
||||
}
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
int[] a = new int[] { 1,2,3,4,5 };
|
||||
for (int i: a) { print(i);}
|
||||
@@ -42,4 +42,9 @@ public class AutoFormatTests {
|
||||
public void bug109() {
|
||||
expectGood("bug109");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void bug420() {
|
||||
expectGood("bug420");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user