[commonizer] Don't commonize "tailrec" and "external" modifiers

expect external and tailrec were prohibited
in previous commit.

^KT-58536
This commit is contained in:
Roman Efremov
2023-05-22 15:21:24 +02:00
committed by Space Team
parent 439cc88525
commit c8023eac13
23 changed files with 20 additions and 108 deletions
@@ -8,10 +8,10 @@ expect fun Qux.set(index: Int, value: String)
expect infix fun Qux.infixFunction1(another: Qux)
expect fun Qux.infixFunction2(another: Qux)
expect tailrec fun tailrecFunction1()
expect fun tailrecFunction1()
expect fun tailrecFunction2()
expect external fun externalFunction1()
expect fun externalFunction1()
expect fun externalFunction2()
expect inline fun inlineFunction1() {}