public static boolean hasNegativeEvenNumbers(Stream<Integer> stream) {
        if(stream.filter(x -> x % 2 == 0).anyMatch(x -> x < 0)){
            return true;
        } else{
            return false;
        }

    }
что не так?