duplicate throws: ensure checks are proceed with correct type after first problem detected (IDEA-145542)

This commit is contained in:
Anna Kozlova
2015-09-25 15:43:12 +03:00
parent 2da2ff75fa
commit 06eecb0b1d
3 changed files with 11 additions and 2 deletions
@@ -0,0 +1,7 @@
// "Suppress for method" "false"
import java.io.FileNotFoundException;
import java.io.IOException;
class Main {
public void test() throws Exce<caret>ption, FileNotFoundException, IOException {}
}