blob: afdbab0007c84e1b305bcf7b7068460fa703a59a [file] [log] [blame]
// "Suppress for class" "true"
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
class Test {
public static void main(String[] args) {
class T {
void foo() {
int <caret>i = 0;
System.out.println(i);
}
}
}
}