IDEA-130477 Instance creation of local inner class within static method is not decompiled correctly

This commit is contained in:
Egor.Ushakov
2015-01-16 20:46:57 +03:00
parent 62b876af25
commit c254ddd8f2
10 changed files with 166 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2000-2014 JetBrains s.r.o.
* Copyright 2000-2015 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,4 +57,5 @@ public class SingleClassesTest extends SingleClassesTestBase {
@Test public void testLocalClass() { doTest("pkg/TestLocalClass"); }
@Test public void testAnonymousClass() { doTest("pkg/TestAnonymousClass"); }
@Test public void testThrowException() { doTest("pkg/TestThrowException"); }
@Test public void testInnerLocal() { doTest("pkg/TestInnerLocal"); }
}