3c859caf2b
Move j2k/test/tests -> j2k/tests, j2k/test/testData -> j2k/testData
14 lines
232 B
Java
Vendored
14 lines
232 B
Java
Vendored
//file
|
|
interface I {
|
|
String getString();
|
|
}
|
|
|
|
class C {
|
|
void foo(I i, boolean b) {
|
|
String result = i.getString();
|
|
if (b) result = null;
|
|
if (result != null) {
|
|
print(result);
|
|
}
|
|
}
|
|
} |