blob: d2a74030b24b196de858a669eeb15e78aea04db6 [file] [log] [blame]
package groovy.bugs
/**
* @author Morgan Hankins
* @version $Revision$
*/
class MorgansBug extends GroovyTestCase {
void testBug() {
def result = 4 + "x"
assert result == "4x"
}
}