Minor: move local lateinit tests to lateinit/local

This commit is contained in:
Dmitry Petrov
2017-07-19 16:37:18 +03:00
parent bbf9bf91fc
commit b12e20b2a3
7 changed files with 27 additions and 27 deletions
@@ -0,0 +1,7 @@
// !LANGUAGE: +LateinitLocalVariables
fun test() {
lateinit var s: String
s = ""
s.length
}