Add tests for obsolete issues
#KT-38804 Obsolete #KT-38801 Obsolete #KT-38835 Obsolete #KT-38737 Obsolete #KT-38664 Obsolete #KT-38549 Obsolete #KT-38766 Obsolete #KT-38714 Obsolete
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
// FIR_IDENTICAL
|
||||
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
||||
|
||||
open class A {
|
||||
open val servers: List<C>
|
||||
get() = findAndExpand({ "hi" })
|
||||
.mapNotNull { B.foo(it) }
|
||||
|
||||
fun findAndExpand(vararg path: () -> String): List<String> = TODO()
|
||||
}
|
||||
|
||||
object B {
|
||||
inline fun <reified T : C> foo(bar: String?): T? = TODO()
|
||||
}
|
||||
|
||||
open class C
|
||||
class D : C()
|
||||
Reference in New Issue
Block a user