|
Groovy example source code file (Groovy389_Bug.groovy)
The Groovy Groovy389_Bug.groovy source code
package groovy.bugs
/**
* Verifies that closures work inside case blocks.
*
*/
class Groovy389_Bug extends GroovyTestCase {
void testBug() {
def a = [10, 11, 12]
def b = 0
switch( "list" ) {
case "list":
a.each { b = b + 1 }
break
}
assert b == 3
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy Groovy389_Bug.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.