smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / CastInThrow-out.java
blob0ba02a78a4026d0dd0efa37638a37c3ea9383c3a
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 (MyException) <caret>