filed can be local: customize annotations to mark as "non-convertable" (IDEA-52988)

This commit is contained in:
anna
2010-11-25 22:24:25 +03:00
parent 741d740496
commit 00599603ed
4 changed files with 49 additions and 2 deletions
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<problems>
</problems>
@@ -0,0 +1,9 @@
class Test {
@Deprecated
private int f;
void foo () {
f = 0;
int k = f;
}
}