mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
Try to report most mismatch errors on the 'impl' declaration. Only report a mismatch error on the 'header' declaration if no error would be otherwise reported on any 'impl' declaration in the compilation unit. Also render declaration kind in the message #KT-18447 In Progress
10 lines
108 B
Kotlin
Vendored
10 lines
108 B
Kotlin
Vendored
header class Foo {
|
|
fun f(s: String)
|
|
|
|
fun f(a: Any)
|
|
}
|
|
|
|
header fun g(s: String)
|
|
|
|
header fun g(a: Any)
|