/**
* @author John Wilson
* @version $Revision: 1.7 $
*/
class ForLoopBug extends GroovyTestCase {
void testBug() {
assertScript( """
def list = []
def a = 1
def b = 5
for (c in a.
package groovy.bugs
class Groovy996_Bug extends GroovyTestCase {
void testAccessToSuperProtectedField() {
def a = new Groovy996_SubClass()
a.out()
}
}
class Groovy996_SuperCl