Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0.0
-
None
Description
If a class has only a setter, but no getter:
class A { void setFoo(String arg) {} }
Then the type checker doesn't allow the property notation for assignments:
def a = new A() a.foo = 'bar'