Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/funOnClassNoClassObject.kt
T
Valentin Kipyatkov 1ad5ea4f7e Corrected test data
2015-05-14 01:10:13 +03:00

8 lines
141 B
Kotlin

// "Create function 'foo'" "false"
// ERROR: Unresolved reference: foo
class A<T>(val n: T)
fun test() {
val a: Int = A.<caret>foo(2)
}