Files
kotlin/compiler/testData/repl/controlFlow/useUninitializedVal.repl
Alexander Udalov 26e3d2cf5d Use TopLevelDeclarations analysis mode in REPL
#KT-12564 Fixed
2017-06-06 14:00:45 +03:00

13 lines
224 B
Plaintext
Vendored

>>> val a: String
error: property must be initialized or be abstract
val a: String
^
>>> a
error: unresolved reference: a
a
^
>>> val s: String = s
error: variable 's' must be initialized
val s: String = s
^