blob: fd7874190b111056c1987f56faf6b2da89e699bf [file] [log] [blame]
package groovy.bugs
/**
* @version $Revision$
*/
class FullyQualifiedMethodReturnTypeBug extends GroovyTestCase {
void testBug() {
def s = foo()
assert s.length() == 3
}
java.lang.String foo() {
return "hey"
}
}