6356807997
#KT-36247 fixed A lot of testdata changed because significanly less (error) descriptors are created for unresolved types, so diagnostics became different.
12 lines
365 B
Kotlin
Vendored
12 lines
365 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
fun main(args: Array<String>) {
|
|
fun f() = run {
|
|
<!WRONG_MODIFIER_TARGET!>private<!> class C {
|
|
private fun foo() {
|
|
<!TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM!><!DEBUG_INFO_MISSING_UNRESOLVED!>f<!>()<!>.<!DEBUG_INFO_MISSING_UNRESOLVED!>foo<!>();
|
|
|
|
}
|
|
}
|
|
C()
|
|
}
|
|
} |