11 lines
130 B
Kotlin
Vendored
11 lines
130 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: false
|
|
|
|
fun foo() {
|
|
Math.min(1, 2)<caret>
|
|
}
|
|
|
|
object Math {
|
|
fun min(a: Int, b: Int) = 0
|
|
}
|