Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.5
-
Fix Version/s: 1.5.2
-
Component/s: command line processing
-
Labels:None
-
Number of attachments :
Description
Given a Java interface A with abstract method a(), and an interface B extends A with method b(), it is possible to compile Groovy class BImpl implements B { b() }. The compiler should complain about unimplemented a(). Explicitly declaring that B implements A, B does catch the error.
That was quick!