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