blob: fbb9b5378661dc01fa0cbf298d6288a7884e203a [file] [log] [blame]
// Test case for Issue 1334
// https://github.com/typetools/checker-framework/issues/1334
import java.util.stream.Stream;
public class Issue1334 {
private void test() {
Stream<Integer> stream = Stream.of(new byte[][] {}).map(b -> 1);
}
}