ee304e92b5
Relates to #KT-27782 #KT-21641
10 lines
112 B
Kotlin
Vendored
10 lines
112 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
class A {
|
|
fun copyOf(x: Int, y: Int) {
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
A().<caret>copyOf(1, 2)
|
|
} |