blob: ee2540bc847894c96c56bad2d3479998fdb6f755 [file] [log] [blame]
package groovy.bugs;
import org.codehaus.groovy.dummy.*
/**
* Test case to check if imports can use wildcard (*) for static method calls.
* Bug reference: Explicit import needed to call static method, GROOVY-935
*/
class StaticMethodImportBug extends GroovyTestCase {
void testBug() {
assert ClassWithStaticMethod.staticMethod()
}
}