[ann] Correct highlighting for subtypes in multi-catch

This commit is contained in:
Roman Shevchenko
2011-05-01 16:57:16 +02:00
parent b84b9f2bfe
commit 8072b38603
12 changed files with 156 additions and 141 deletions

View File

@@ -6,7 +6,7 @@ class C {
try {
int p = 0;
}
catch (IOException | <caret>FileNotFoundException | RuntimeException e) {
catch (EOFException | <caret>FileNotFoundException | RuntimeException e) {
}
}
}