<@U0AAQKT9Q>: what's the point of inlining `assert...
# stdlib
v
@ilya.gorbunov: what's the point of inlining
assertFailsWith
? In the green path the code inside the assertion throws an exception, which is very expensive (on jvm or anywhere else). Why would I care to inline everything else around, when a call invocation is cheaper than
throw
?