Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.7.6, 1.8-beta-3
-
Component/s: Stub generator / Joint compiler
-
Labels:None
-
Number of attachments :
Description
The stub generation fails with the following classes. It appears it may be because of the generic signatures.
//groovy code public interface ColContract { List<? extends PrimitiveContract> getPrims(); String getThing(); List<String> getMoreThings(); } public interface PrimitiveContract { String getFoo(); String getBar(); }
import java.util.List; public class Client3 { { new ColContract() { @Override public List<? extends PrimitiveContract> getPrims() { return null; } @Override public String getThing() { return null; } @Override public List<String> getMoreThings() { return null; } }; } }
to you give the error message you get as well?