We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
package jadx.tests.integration.inner; import jadx.tests.api.IntegrationTest; import jadx.tests.api.utils.assertj.JadxAssertions; import org.junit.jupiter.api.Test; public class TestInnerConstructorCall extends IntegrationTest { public static class TestCls { @SuppressWarnings("InnerClassMayBeStatic") public class A { public class AA { public void test() { } } } public void test() { A a = new A(); A.AA aa = a.new AA(); aa.test(); } } @Test public void test() { JadxAssertions.assertThat(getClassNode(TestCls.class)) .code(); } }
1.5.0
The text was updated successfully, but these errors were encountered:
feat: support inner class contruction with outer instance (#2253)
109dea0
Fixed. Thanks for test case 👍
Sorry, something went wrong.
No branches or pull requests
Provide sample and class/method full name
Test
Jadx version
1.5.0
The text was updated successfully, but these errors were encountered: