Files
kotlin/idea/testData/quickfix/createFromUsage/createClass/callExpression/beforeCallInMemberVarDelegateRuntime.kt
2014-11-11 14:42:45 +03:00

9 lines
123 B
Kotlin

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