blob: e58d741ff9b674850040b48110f6bdcc33f31019 [file] [log] [blame]
package groovy.bugs
import java.io.*
/**
* @version $Revision$
*/
class Groovy308_Bug extends GroovyTestCase {
void testBug() {
out = new StringWriter()
out << "hello " << "world!"
value = out.toString()
assert value == "hello world!"
out = new ByteArrayOutputStream()
out << "hello " << "world!"
value = new String(out.toByteArray())
assert value == "hello world!"
System.out << "hello" << " world!"
}
}