提交 2148d4b0 编写于 作者: A Ahmed Ashour 提交者: skylot

test: add test case for #597 (PR #603)

上级 632cc3ec
package jadx.tests.integration.inner;
import org.junit.jupiter.api.Test;
import jadx.NotYetImplemented;
import jadx.tests.api.IntegrationTest;
public class TestAnonymousClass16 extends IntegrationTest {
public static class TestCls {
public Something test() {
Something a = new Something() {
{
put("a", "b");
}
};
a.put("c", "d");
return a;
}
public class Something {
public void put(Object o, Object o2) {
}
}
}
@Test
@NotYetImplemented
public void test() {
noDebugInfo();
getClassNode(TestCls.class);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册