Add intentions to convert nullable <--> lateinit var #KT-12743 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-11-21 10:50:15 +03:00
committed by Mikhail Glukhikh
parent 9049af3bdf
commit 4cf266e99f
33 changed files with 343 additions and 0 deletions
@@ -0,0 +1,5 @@
// WITH_RUNTIME
// IS_APPLICABLE: false
class C {
<caret>var foo: UInt? = null
}