Partial body resolve test to test 2 resolve modes
This commit is contained in:
@@ -5,12 +5,7 @@ open class C(p: Int) {
|
||||
}
|
||||
|
||||
fun foo(p: String?) {
|
||||
val o = object : Runnable {
|
||||
override fun run() {
|
||||
if (p == null) return
|
||||
print(p.size)
|
||||
}
|
||||
}
|
||||
/* STATEMENT DELETED: val o = object : Runnable { override fun run() { if (p == null) return print(p.size) } } */
|
||||
|
||||
val c = object : C(p!!.size) {
|
||||
override fun f() {
|
||||
|
||||
Reference in New Issue
Block a user