UNNECESSARY_LATEINIT warning introduced #KT-13295 Fixed

(cherry picked from commit 88f9938)
This commit is contained in:
Mikhail Glukhikh
2016-09-26 11:17:42 +03:00
committed by Mikhail Glukhikh
parent b0ed6adce3
commit 4da9a101cf
27 changed files with 316 additions and 3 deletions
@@ -0,0 +1,7 @@
class Foo {
<!UNNECESSARY_LATEINIT!>lateinit<!> var bar: String
init {
bar = ""
}
}