mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
10 lines
223 B
Kotlin
10 lines
223 B
Kotlin
// "Create function 'foo'" "false"
|
|
// ACTION: Replace with infix function call
|
|
// ACTION: Split property declaration
|
|
// ERROR: Unresolved reference: foo
|
|
|
|
class A<T>(val n: T)
|
|
|
|
fun test() {
|
|
val a: Int = A.<caret>foo(2)
|
|
} |