everything is the title
java tutorial says:
OuterClass.InnerClass innerObject = outerObject.new InnerClass();
this doesn't work for me:
public class aching{
class pixel{
public char c;
public int f;
}
public static void main(String[] args){
aching a = new aching();
aching.pixel[][] p = a.new pixel[1][1];
}
}