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