blob: fe831ae9cb661b392afcdd2423d127a108a2619f [file] [log] [blame]
// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo() {
Math.min(1, 2)<caret>
}
object Math {
fun min(a: Int, b: Int) = 0
}