Consider the following: ```groovy void meth(Runnable action = new Runnable() { @Override void run() { print 'works' } }) { action.run() } ``` Currently this fails with exception when trying to find method scope for the anon. inner class.
Consider the following:
Currently this fails with exception when trying to find method scope for the anon. inner class.