Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.7.2
-
None
-
None
-
Mac OSX 10.6 with Java 1.6
Description
The following code reproduce the error:
class Foo {}
Foo.metaClass.invokeMethod = { String name, args ->
for (arg in args)
}
def f = new Foo()
f.echo(f as Foo)