소스 검색

fixed JASSIST-158

tags/rel_3_18_1_beta1
chibash 10 년 전
부모
커밋
9098c6f88c
1개의 변경된 파일30개의 추가작업 그리고 0개의 파일을 삭제
  1. 30
    0
      src/test/test4/JIRA158.java

+ 30
- 0
src/test/test4/JIRA158.java 파일 보기

@@ -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…
취소
저장