void doSomething(def foo) { println foo } void doSomethingElse(int bar) { println bar } doSomething() doSomethingElse() // Throws MissingMethodException