The first example I remember seeing for this was the sum of all Real numbers.
\begin{equation} \int_\mathbb{R} x\ dx = \int^{\infty}_{-\infty} x\ dx = \lim_{a\rightarrow\infty^-} \int^{a}_{0} x\ dx + \lim_{b\rightarrow-\infty^+} \int^{0}_{b} x\ dx \end{equation}
We can't evaluate that sum because we have no control over how fast each limit approaches infinity and we can't assume that they approach infinity at the same speed (which would result in $0$, if we could).
A more useful example is a problem I have actually encountered. The following function R is used to represent the progress per day given a devotion score of $x$ and a distraction score of $y$ in a simulation I was running a while back.
\begin{equation} R(x, y) = \frac{\lim_{a\rightarrow x} \ \ln{\frac{100 - a}{100}}}{\lim_{b\rightarrow y}\ \ln{\frac{100 - b}{100}}} \quad \text{for } x,y \in [0, 100] \end{equation}
Not sure about the notation here for dividing the limits, but this is essentially the function I have in my code, but with added limits. This code is very old so I don't remember why I came to believe these scores contributed in this way. Any analysis of the validity of this function for that purpose will be outside the scope of this question.
The value of $R(100, 100)$ would be how much progress a person who was $100\%$ devoted but also $100\%$ distracted would accomplish. Is $R(100, 100)$ incalculable for the same reason? Are there any techniques for finding a better way to represent this than a double limit that would lead to a meaningful answer?