37cd7eb1ba
Use INACCESSIBLE_OUTER_CLASS_EXPRESSION error for marking already resolved elements #KT-3261 Fixed
11 lines
214 B
Kotlin
11 lines
214 B
Kotlin
class Test {
|
|
class object {
|
|
fun test(<!UNUSED_PARAMETER!>t<!>: TestInner) = 42
|
|
}
|
|
|
|
class TestStatic {
|
|
fun test(<!UNUSED_PARAMETER!>t<!>: TestInner) = 42
|
|
}
|
|
|
|
inner class TestInner
|
|
} |