Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/localVariable/afterInAccessorWithExpressionBody.kt
T
2014-09-30 19:55:46 +04:00

11 lines
202 B
Kotlin

// "Create local variable 'foo'" "true"
// ACTION: Create parameter 'foo'
// ERROR: Variable 'foo' must be initialized
class A {
val t: Int get() {
val foo: Int
return foo
}
}