Menu

#101 Minor bug in Java5-to-4 transformations

v0.70
open
nobody
None
1
2013-03-01
2013-03-01
No

The following code causes a IndexOutOfBoundsException during the transformation process (Don't mind that some methods are not implemented from java.lang.annotation.Annotation, Recoder doesn't check it anyway):

@interface X {
int foo() default 5;
}

class Y implements X {
public int foo() {

}

}

Discussion


Log in to post a comment.