blob: a0178b635b1de35532b564765c651234d404394e [file] [log] [blame]
class ClassLoaderBug extends GroovyTestCase {
static void main(args) {
def gst = new ClassLoaderBug();
gst.testWithOneVariable();
}
void testWithOneVariable() {
println("Called method")
}
}