[FIR] Remove usage of FirSamResolver in call conflict resolution

#KT-63703 Fixed
This commit is contained in:
Kirill Rakhman
2024-01-04 13:31:37 +01:00
committed by Space Team
parent ad8d4051b8
commit 50bfd19959
7 changed files with 53 additions and 7 deletions
@@ -0,0 +1,11 @@
// FIR_IDENTICAL
fun interface Runnable {
fun run()
}
fun foo(r: Runnable, f: Runnable) = 1
fun foo(r: Runnable, f: () -> Unit) = ""
fun test(): String {
return foo(Runnable {}, {})
}