blob: ecf1ebdedc342aed19b85f6f855f9208b940287d [file] [log] [blame]
class MethodCallWithoutParensInStaticMethodBug extends GroovyTestCase {
void testBug() {
staticMethod()
}
static void staticMethod() {
println 'hello'[1]
}
}