blob: 952d9733ebfecb117210247e3436727e636949d3 [file] [log] [blame]
class X {
void foo(List l) {
if (l instanceof String) {
if (l instanceof MyList) {
print l
String v = l.value
}
}
}
}
class MyList {
String getValue() { '' }
}