Intention / inspection for unnecessary lateinit #KT-13011 Fixed

(cherry picked from commit 45d82f1)
This commit is contained in:
shiraji
2016-07-26 01:12:50 +03:00
committed by Mikhail Glukhikh
parent d868410093
commit 5fb79259f7
26 changed files with 428 additions and 0 deletions
@@ -0,0 +1,9 @@
// IS_APPLICABLE: false
class Foo() {
<caret>lateinit var bar: String
constructor(baz: Int) : this() {
bar = ""
}
}