Skip to content

Commit

Permalink
fixed JASSIST-242. VerifyError: Inconsistent args count operand in in…
Browse files Browse the repository at this point in the history
…vokeinterface when boolean parameter function with inheritance
  • Loading branch information
chibash committed May 28, 2015
1 parent a4f46cd commit d9653a3
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/test/test5/JIRA242.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package test5;

public class JIRA242 {
static interface IBooleanSeries {
public void setValue(boolean value);
}

public static class BooleanDataSeries implements IBooleanSeries{
@Override
public void setValue(boolean value) {}
}

public static class Hello {
IBooleanSeries BOOL_SERIES;

public int say() {
System.out.println("Hello end :) ");
return 0;
}

public IBooleanSeries createBooleanSeriesStep() {
return new BooleanDataSeries();
}
}
}

0 comments on commit d9653a3

Please sign in to comment.