d986e0ee9c
In this commit, tests where backend diagnostics were reported correctly are being moved. FirScopeDumpHandler was added to FIR diagnostic tests with JVM backend to support `SCOPE_DUMP` in `overridesBuiltinNoMagic.kt` and `charAtAndOverload.kt`.
11 lines
217 B
Kotlin
Vendored
11 lines
217 B
Kotlin
Vendored
// WITH_STDLIB
|
|
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
class A {
|
|
@kotlin.jvm.JvmOverloads <!CONFLICTING_JVM_DECLARATIONS!>fun foo(s: String = "") {
|
|
}<!>
|
|
|
|
<!CONFLICTING_JVM_DECLARATIONS!>fun foo() {
|
|
}<!>
|
|
}
|