blob: 290f8057e8e0185c9f611445a15817664b829de1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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();
}
}
|