Fun compiler bug for 1.3. The Kotlin compiler thro...
# announcements
j
Fun compiler bug for 1.3. The Kotlin compiler throws quite an interesting exception when you do this:
Copy code
infix fun String.dependsOn(dependency: String) {
    data class TestMe(
        val doesThisWork: String = this,
        val somethingElse: String = dependency
    )
}
Issue opened: https://youtrack.jetbrains.net/issue/KT-28022
🙈 3