Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
class Foo<T>{ Foo(T a, T b){} } @groovy.transform.CompileStatic def bar() { Foo<Object> f = new Foo<>("a", new Object()) } bar()
fails with an internal error, even though it should have passed