blob: 510978bb95542a0cec314653bd5a7fae144ac787 [file] [log] [blame]
// Based on a false positive in Zookeeper
import java.util.*;
class SimpleStreamExample {
static void test(List<SimpleStreamExample> s) {
s.stream().filter(str -> str == null);
}
}