Files
kotlin/idea/testData/quickfix/createFromUsage/createClass/callExpression/callInMemberVarDelegateRuntime.kt

9 lines
123 B
Kotlin
Vendored

// "Create class 'Foo'" "true"
// DISABLE-ERRORS
open class B
class A<T>(val t: T) {
var x: B by <caret>Foo(t, "")
}