[IR] Fix name clash between properties with the same fqn

Promote ABI version
This commit is contained in:
Roman Artemev
2019-06-19 16:19:57 +03:00
committed by romanart
parent 2995e9fcac
commit 88e92be091
3 changed files with 16 additions and 7 deletions
@@ -22,7 +22,7 @@ fun String.parseKonanAbiVersion(): KotlinAbiVersion {
data class KotlinAbiVersion(val version: Int) {
companion object {
val CURRENT = KotlinAbiVersion(12)
val CURRENT = KotlinAbiVersion(13)
}
override fun toString() = "$version"
}