ab5a691612
#KT-6687 Fixed
11 lines
136 B
Kotlin
11 lines
136 B
Kotlin
// "Create property 'foo'" "true"
|
|
// ERROR: Property must be initialized
|
|
|
|
package foo
|
|
|
|
val foo: Int
|
|
|
|
fun test(): Int {
|
|
return foo
|
|
}
|