Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
Description
Consider the following:
trait T { String string = 'value' } class C implements T { void meth() { { -> T.super.setString('other') println T.super.getString() }() } } new C().meth()
The addition of a closure within the method causes a breakdown of the qualified-super method or property access. "MissingPropertyException: No such property: super for class: T"