10 lines
200 B
Kotlin
10 lines
200 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
|
|
}
|
|
} |