IDEA-103758

This commit is contained in:
anna
2013-04-05 17:02:57 +02:00
parent 6602b68545
commit ae8ab9589e
4 changed files with 14 additions and 14 deletions
@@ -54,7 +54,7 @@ class C {
void m3(int p) throws Exception {
try (MyResource r = new MyResource()) {
r.doSomething();
<error descr="Cannot assign a value to final variable 'r'">r = null</error>;
<error descr="Cannot assign a value to final variable 'r'">r</error> = null;
int <error descr="Variable 'r' is already defined in the scope">r</error> = 0;
}
catch (E e) {