|
Groovy example source code file (Bytecode6Bug.groovy)
The Groovy Bytecode6Bug.groovy source code
package groovy.bugs
/**
* @version $Revision: 4996 $
*/
class Bytecode6Bug extends GroovyTestCase {
void testPostFixReturn() {
def i = 1
def closure = { i++ }
def value = closure()
assert value == 1
assert i == 2
}
void testPreFixReturn() {
def i = 1
def closure = { return ++i }
def value = closure()
assert value == 2
assert i == 2
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy Bytecode6Bug.groovy source code file: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.