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