smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / CastInThrow.java
blob79892bdce87c933480f9a0d66b6c484d607bfbd7
1 class MyException extends Exception {}
3 class Test {
4 void test() throws MyException {
5 try {
6 throw new RuntimeException();
7 } catch(Exception e) {
8 throw (<caret>)