IDEA-174659 Autocomplete generic parameters according to type restriction

This commit is contained in:
peter
2018-01-10 15:11:03 +01:00
parent fb27ac6664
commit 80875741b8
3 changed files with 42 additions and 5 deletions
@@ -0,0 +1,8 @@
public class BlaExecutor implements BasicExecutor<Bla<caret>> {
}
interface BasicExecutor<T extends Exception> {
}
class BlaOperation extends Exception {
}