blob: b9dd9de001e50acf779152649330b90e52a114ae [file] [log] [blame]
class SimplePostfixTest extends GroovyTestCase {
void testPostfix() {
def x = 1
++x
println(x)
assert x == 2
}
}