次のようなものを表現するためのGroovyの代替手段はありますか?
def doSomethingWith(implicit i:Int) = println ("Got "+i)
implicit var x = 5
doSomethingWith(6) // Got 6
doSomethingWith // Got 5
x = 0
doSomethingWith // Got 0
更新:ここでフォローアップの質問を参照してください:Scalaの暗黙的なパラメーターに相当するGroovy-拡張