blob: 11facefe4d9ef724746aa14a3e79a3fcc8d6d2bd [file] [log] [blame]
package groovy
class StaticImportTarget {
static cl = {'StaticImportTarget#static closure called'}
def 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"
}
}