blob: 102cb868fb5d2da04896ea3feeefaa0fbb6de759 [file] [log] [blame]
package groovy
class StaticImportTarget {
static cl = {'StaticImportTarget#static closure called'}
static x(String message, int times) {
return message * times
}
def y(String message, int times) {
return x(message, times)
}
static z() {
assert false, "this.z()/super.z() was resolved to statically imported method"
}
}