[FIR] Fix methods with erased parameters missing from raw collection scope

#KT-65448 Fixed
This commit is contained in:
Kirill Rakhman
2024-02-13 10:26:45 +01:00
committed by Space Team
parent 931480b12d
commit e88865e4c7
18 changed files with 818 additions and 2 deletions
@@ -0,0 +1,11 @@
// ISSUE: KT-65448
// TARGET_BACKEND: JVM
// SEPARATE_SIGNATURE_DUMP_FOR_K2
// FILE: Java1.java
import java.util.ArrayList;
public abstract class Java1 extends ArrayList { }
// FILE: 1.kt
abstract class E : Java1(){
}