Coin completion tests moved from class name to normal

This commit is contained in:
Roman Shevchenko
2011-03-10 21:34:37 +01:00
parent ec147dd31d
commit 25e36ccea0
14 changed files with 61 additions and 11 deletions
@@ -0,0 +1,7 @@
class MyClass {
static class MyException extends Exception { }
void m() {
try { } catch (RuntimeException | My<caret> e) { }
}
}