|
Groovy example source code file (Groovy996_Bug.groovy)
The Groovy Groovy996_Bug.groovy source code
package groovy.bugs
class Groovy996_Bug extends GroovyTestCase {
void testAccessToSuperProtectedField() {
def a = new Groovy996_SubClass()
a.out()
}
}
class Groovy996_SuperClass {
protected String x = 'This is an X'
}
class Groovy996_SubClass extends Groovy996_SuperClass {
void out() {
println( x )
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy Groovy996_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.