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