blob: 0bb35e8902a27d61b439bdd76c89fb9a40568c27 [file] [log] [blame]
// Test referencing protected data from parent of inner class.
import java.util.Random;
public class inner_data
{
private class Randomer extends Super {
public long xxx ()
{
return seed;
}
}
}
class Super
{
protected long seed;
}