Implement backend error reporting on unsupported script capturing

#KT-30616 fixed
#KT-43995 fixed
#KT-19424 fixed
#KT-49443 fixed
This commit is contained in:
Ilya Chernikov
2021-11-30 17:14:24 +01:00
committed by TeamCityServer
parent cb5e451e05
commit 10c5071eda
22 changed files with 444 additions and 34 deletions
@@ -0,0 +1,23 @@
// !RENDER_DIAGNOSTICS_FULL_TEXT
// TARGET_BACKEND: JVM_IR
// see KT-49443
// two similar examples check dependency on declarations ordering
interface I {
fun rename()
}
class DefaultEachEntryConfiguration(val entry: Int) : I {
override fun rename() {
entry.copy()
}
}
<!SCRIPT_CAPTURING_OBJECT!>object ZipHelper<!> {
fun buildZip() {
DefaultEachEntryConfiguration(0).rename()
}
}
fun Int.copy() = Unit