|
Groovy example source code file (DefVariableBug.groovy)
The Groovy DefVariableBug.groovy source code
package groovy.bugs
/**
* @version $Revision: 1.3 $
*/
class DefVariableBug extends GroovyTestCase {
void testBug() {
/* cpoirier - "def" can be refered to as a variable name,
but cannot be declared as one (due to ambiguities)
def = 123
assert def == 123
*/
def foo = new Expando(a:123, def:456)
assert foo.def == 456
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy DefVariableBug.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.