Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.7.6, 1.8-beta-3
-
None
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; } }; } }