This is fixed in the build #512. Thanks.

Best regards,
Valentin Kipiatkov
-----------------------------------------------------------
 IntelliJ Software, http://www.intellij.com/
 "Develop with pleasure"
-----------------------------------------------------------

----- Original Message ----- 
From: "Thomas Singer" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, October 30, 2001 6:31 PM
Subject: [Eap-list] Bug in inline method


> Assume following piece of code:
> 
> public class A {
> public void method1() {
> }
> 
> public void method2() {
> method1();
> }
> }
> 
> public class B extends A {
> public void method2() {
> super.method2();
> }
> }
> 
> Now I go to super.method2() and say inline method. The result is:
> 
> public class B extends A {
> public void method2() {
> A a = super;
> a.method1();
> }
> }
> 
> That's not valid Java syntax. What's about super.method1() ?
> 
> Best regards
> Thomas Singer
> 
> 
> _______________________________________________
> Eap-list mailing list
> [EMAIL PROTECTED]
> http://www.intellij.com/mailman/listinfo/eap-list


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

Reply via email to