f19eb20803
#KT-5287 Fixed
10 lines
179 B
Kotlin
Vendored
10 lines
179 B
Kotlin
Vendored
// ERROR: Property must be initialized or be abstract
|
|
object Library {
|
|
val ourOut: java.io.PrintStream
|
|
}
|
|
|
|
class User {
|
|
fun main() {
|
|
Library.ourOut.print(1)
|
|
}
|
|
} |