75c887048e
Test data from compiler/testData/lazyResolve/ was moved to diagnostics tests
9 lines
232 B
Kotlin
9 lines
232 B
Kotlin
package test
|
|
|
|
open class ToResolve<SomeClass>(f : (Int) -> Int)
|
|
fun testFun(<!UNUSED_PARAMETER!>a<!> : Int) = 12
|
|
|
|
class TestSome<P> {
|
|
class object : ToResolve<<!INACCESSIBLE_OUTER_CLASS_EXPRESSION!>P<!>>({testFun(it)}) {
|
|
}
|
|
} |