Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.8.2, 1.9-beta-3
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
def a = { println foo }
def b = { println bar }
class O {
def foo = 'foo'
def bar = 'bar'
}
def ab = a >> b
ab.delegate = new O()
ab()
throws groovy.lang.MissingPropertyException: No such property: foo for class: ConsoleScript5