blob: 035f07262d2e5faafd7acc7b255d1407431d9301 [file] [log] [blame]
public class InnerClass {
void m() {
Object o = new Object();
if (o instanceof String) {
String s = (String) o;
}
class Inner {
void m() {
Object o = new Object();
if (o instanceof String) {
String s = (String) o;
}
}
}
new InnerClass() {
void m() {
Object o = new Object();
if (o instanceof String) {
String s = (String) o;
}
}
};
o = new Object();
if (o instanceof String) {
String s = (String) o;
}
}
}