Fix Math.min with coerceAtMost intention inside qualified expression

So #KT-19232 Fixed
This commit is contained in:
Toshiaki Kameyama
2017-07-26 23:40:18 +09:00
committed by Mikhail Glukhikh
parent a82f66cf45
commit 5290553184
12 changed files with 94 additions and 7 deletions
@@ -0,0 +1,6 @@
// WITH_RUNTIME
import java.lang.Math.max
fun foo() {
Math.max(max(1, 3)<caret>, max(2, 4))
}