[MPP] Add test for inc/dec check in expect class

KT-49714
This commit is contained in:
Pavel Kirpichenkov
2022-01-27 14:02:59 +03:00
committed by teamcity
parent 1ce7286c86
commit 90abbb4a9f
6 changed files with 44 additions and 0 deletions
@@ -0,0 +1,10 @@
// !LANGUAGE: +MultiPlatformProjects
// SKIP_TXT
// Issue: KT-49714
expect class Counter {
operator fun inc(): Counter
operator fun dec(): Counter
}
actual typealias Counter = Int