[ann] Correct highlighting for subtypes in multi-catch

This commit is contained in:
Roman Shevchenko
2011-05-03 21:10:10 +02:00
parent b84b9f2bfe
commit 8072b38603
12 changed files with 155 additions and 140 deletions
@@ -6,7 +6,7 @@ class C {
try {
int p = 0;
}
catch (IOException | <caret>FileNotFoundException | RuntimeException e) {
catch (EOFException | <caret>FileNotFoundException | RuntimeException e) {
}
}
}