blob: 7da404b1584f34a2c7005f2d4cb86e6ff106fe42 [file] [log] [blame]
//file
interface I {
String getString();
}
class C {
void foo(I i) {
String result = i.getString();
if (result != null) {
print(result);
}
}
}