projects
/
idea
/
community.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
IDEA-147454 Smart completion add parentheses to class declaration in throws statement
[idea/community.git]
/
java
/
java-tests
/
testData
/
codeInsight
/
completion
/
smartType
/
MethodThrows.java
1
class FirstException extends Exception {}
2
class SecondException extends Exception {}
3
4
interface I {
5
void method() throws FirstException, SecondException;
6
}
7
8
class C implements I {
9
void method() throws FirstException, Sec<caret>;
10
}