disable exceptional fixes for local classes (IDEA-189596)

This commit is contained in:
Anna.Kozlova
2018-04-09 11:35:22 +02:00
parent 702604b110
commit f86e0a31ea
5 changed files with 49 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
// "Add exception to method signature" "false"
import java.io.*;
class C {
public void m() {
class Local {
InputStream in = new File<caret>InputStream("");
}
}
}