public class Clasa {
 public class Inner{
  public Inner(int i) {}
 }
}

class Test extends Clasa.Inner {
 public Test(Clasa c, int i) {
  c.super(i); // this line is highlighted, but it compiles just fine
 }
}

Also the bug with importing inner classes is still there.

Regards,
Florin



_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list

Reply via email to