Skip to content

Commit 7bbedf6

Browse files
committed
Add regression tests for temp stack variable array issue
1 parent 8ea7ff6 commit 7bbedf6

File tree

5 files changed

+22
-0
lines changed

5 files changed

+22
-0
lines changed
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package stuff.array_issue;
2+
3+
public class External {
4+
public void Accept(int... args) {
5+
6+
}
7+
}
Binary file not shown.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package stuff.array_issue;
2+
3+
public class Primary {
4+
private External ex = new External();
5+
6+
public void Run() {
7+
this.ex.Accept(new int[]{0, 1, 2});
8+
}
9+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
CORE
2+
Primary.class
3+
--function stuff.array_issue.Primary.Run
4+
^VERIFICATION SUCCESSFUL|VERIFICATION FAILED$
5+
--
6+
^warning: ignoring

0 commit comments

Comments
 (0)