blob: 3b24e66530bca828cede4e1ecfb05d2b09481ff5 [file] [log] [blame]
package org.codehaus.groovy.dummy;
/**
* Class used by groovy.bugs.StaticMethodImportBug.
* Bug reference: Explicit import needed to call static method, GROOVY-935
*/
class ClassWithStaticMethod {
static boolean staticMethod() { return true }
}