fix testdata

This commit is contained in:
Anna.Kozlova
2016-04-21 14:33:04 +02:00
parent e07b25baba
commit 399e59e8dd
4 changed files with 16 additions and 2 deletions
@@ -1,4 +1,4 @@
// "Suppress for statement" "true"
// "Suppress for statement with comment" "true"
public class Test {
public void run() {
//noinspection id,unused
@@ -0,0 +1,7 @@
// "Suppress for statement" "true"
public class Test {
public void run() {
//noinspection id
@SuppressWarnings("unused") int i;
}
}
@@ -1,4 +1,4 @@
// "Suppress for statement" "true"
// "Suppress for statement with comment" "true"
public class Test {
public void run() {
//noinspection id
@@ -0,0 +1,7 @@
// "Suppress for statement" "true"
public class Test {
public void run() {
//noinspection id
int <caret>i;
}
}