FE: add tests for KT-53966 (positive/negative)

This commit is contained in:
Mikhail Glukhikh
2023-01-19 12:46:22 +01:00
committed by Space Team
parent 12a083af25
commit 5a9e8b3c0a
12 changed files with 110 additions and 0 deletions
@@ -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 })
}