Browse Source

fixed JASSIST-158

tags/rel_3_18_1_beta1
chibash 10 years ago
parent
commit
9098c6f88c
1 changed files with 30 additions and 0 deletions
  1. 30
    0
      src/test/test4/JIRA158.java

+ 30
- 0
src/test/test4/JIRA158.java View File

@@ -0,0 +1,30 @@
package test4;

interface JIRA158Intf {
int foo(long[] j, double[] d);
int bar(long j, double d);
}

class JIRA158Impl implements JIRA158Intf {
public int foo(long[] j, double[] d) {
return 7;
}
public int bar(long j, double d) {
return 8;
}
}

public class JIRA158 {
long[] jj;
double[] dd;
long j;
double d;
JIRA158Intf obj;
public JIRA158() {
jj = new long[1];
dd = new double[1];
j = 3L;
d = 3.0;
obj = new JIRA158Impl();
}
}

Loading…
Cancel
Save