Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/contracts/dsl/rewriteAtSliceFunctor.kt
T
2019-01-14 11:10:37 +03:00

10 lines
157 B
Kotlin
Vendored

// See KT-28847
class Foo(val str: String?) {
val first = run {
str.isNullOrEmpty()
second
}
val second = str.isNullOrEmpty()
}