I noticed in the bytecode viewer that it already d...
# language-proposals
d
I noticed in the bytecode viewer that it already does this if I eliminate the comparison (
inline fun <T : Comparable<T>> max(a: T, b: T) = a // obviously not very useful
) but it seems like the comparison should also be optimized. Forgive me if this is not possible (it doesn’t sound easy)