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