blob: be118e2a60c69762ccc9fef60cfb761fe711ddcb [file] [log] [blame]
package groovy.bugs
class MethodCallWithoutParensInStaticMethodBug extends GroovyTestCase {
void testBug() {
staticMethod()
}
static void staticMethod() {
println 'hello'[1]
}
}