Fix Delegates.lazy usages in testData
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
// WITH_RUNTIME
|
||||
// IS_APPLICABLE: false
|
||||
import kotlin.properties.Delegates
|
||||
|
||||
class A(val n: Int) {
|
||||
val <caret>foo: Boolean by Delegates.lazy { n > 1 }
|
||||
val <caret>foo: Boolean by lazy { n > 1 }
|
||||
}
|
||||
|
||||
fun test() {
|
||||
|
||||
Reference in New Issue
Block a user