FE: add tests for KT-53966 (positive/negative)
This commit is contained in:
committed by
Space Team
parent
12a083af25
commit
5a9e8b3c0a
+16
@@ -0,0 +1,16 @@
|
||||
FILE: test.kt
|
||||
public final class Wrapper : R|kotlin/Any| {
|
||||
public constructor(si: R|SamInterface?|): R|Wrapper| {
|
||||
super<R|kotlin/Any|>()
|
||||
}
|
||||
|
||||
public final val si: R|SamInterface?| = R|<local>/si|
|
||||
public get(): R|SamInterface?|
|
||||
|
||||
}
|
||||
public final fun test(w: R|Wrapper?|): R|kotlin/Unit| {
|
||||
R|/Wrapper.Wrapper|(R|<local>/w|?.{ $subj$.R|kotlin/let|<R|Wrapper|, R|SamInterface?|>(<L> = let@fun <anonymous>(it: R|Wrapper|): R|SamInterface?| <inline=Inline, kind=EXACTLY_ONCE> {
|
||||
^ R|<local>/it|.R|/Wrapper.si|
|
||||
}
|
||||
) })
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
// FILE: SamInterface.java
|
||||
|
||||
public interface SamInterface {
|
||||
public boolean foo(String arg);
|
||||
}
|
||||
|
||||
// FILE: test.kt
|
||||
|
||||
class Wrapper(val si: SamInterface?)
|
||||
|
||||
fun test(w: Wrapper?) {
|
||||
Wrapper(w?.let { it.si })
|
||||
}
|
||||
Reference in New Issue
Block a user