blob: a66b4dda82a7bd649dea1293571fb60b38b5d25e [file] [log] [blame]
class MultilineChainExpressionTest extends GroovyTestCase {
void testMultiLineChain() {
// the code below should be compileable
assert (
System
.out
.class
==
PrintStream
.class
)
assert System
.err
.class == PrintStream.class
}
}