blob: a7712aa4ec281573425954172b7643918d29b756 [file] [log] [blame]
import groovy.transform.InheritConstructors
class Base {
def Base(Date x) {}
}
@InheritConstructors
class Inheritor extends Base {
}
Inheritor i = new Inheritor(<caret>)