blob: 2c91be5c940061da1c9eb7225bb9c4ca4c2b2e3d [file] [log] [blame]
import org.jetbrains.annotations.*;
import java.util.*;
class Test {
void foo() {
String[] data = new String[] {"abs", "def"};
for (@NotNull String foo: data) {
assert foo != null; // Condition always true
}
}
}