Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.1.0, 2.4.0-beta-3
-
None
Description
The following is valid Java code, but the groovyc fails complaining
unable to resolve class X
public class Foo<T extends List<X>, X extends Number>{}
while changing the generic type definition order it works
public class Foo<X extends Number, T extends List<X>>{}