|
Groovy example source code file (InconsistentStackHeightBug.groovy)
The Groovy InconsistentStackHeightBug.groovy source code
package groovy.bugs
/**
* @version $Revision: 4996 $
*/
class InconsistentStackHeightBug extends GroovyTestCase {
void testBug() {
def server = 0
def tmp = server + 1
try {
}
finally {
}
}
void testBug2() {
def server = 0
def tmp = server == 2
try {
}
finally {
}
}
void testBug3() {
def server = 0
def foo = server
try {
}
finally {
}
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy InconsistentStackHeightBug.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.