import groovy.lang.Closure; public class Foo { public Foo (Closure c) { init (); } private void init () { throw new RuntimeException ("This must not be executed during compile!"); } }