Hi,

    In the following example, after converting anonymous to inner class in Test(), the 
constructor parameter disappears, which is not the expected result.

class Base
{
    public Base(String string)
    {
    }
}

public class Test
{
    public Test()
    {
        Base b = new Base("hello") {  };
    }
}


---
Sincerely yours,
Mike Aizatsky
___________________________________________________________________________
Visit http://www.visto.com.
Find out  how companies are linking mobile users to the 
enterprise with Visto.


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

Reply via email to