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