blob: c08e79eb3b6fb053c92e43eefa95d1f5fbde4cc1 [file] [log] [blame]
package groovy.bugs
/**
* @version $Revision$
*/
class ToStringBug extends GroovyTestCase {
void testBug() {
println "Starting test"
def value = toString()
assert value != null
println value
println "Found value ${value}"
}
String toString() {
return super.toString() + "[hey]"
}
}