Files
kotlin/idea/testData/quickfix/createFromUsage/createClass/callExpression/callWithJavaClassReceiver.before.Main.kt

9 lines
236 B
Kotlin

// "Create class 'Foo'" "false"
// ACTION: Create extension function 'Foo'
// ACTION: Create function 'Foo'
// ACTION: Convert to expression body
// ERROR: Unresolved reference: Foo
fun test(): Int {
return A().<caret>Foo(1, "2")
}