Don't offer to remove empty primary constructor of expect class

This commit is contained in:
Mikhail Zarechenskiy
2017-09-27 18:41:59 +03:00
parent f3344ec2b2
commit 4b2fc9a325
5 changed files with 46 additions and 1 deletions
@@ -0,0 +1,4 @@
// IS_APPLICABLE: false
@Suppress("UNSUPPORTED_FEATURE")
expect class Foo constructor()<caret>
@@ -0,0 +1,4 @@
// IS_APPLICABLE: false
@Suppress("UNSUPPORTED_FEATURE")
expect class Foo()<caret>
@@ -0,0 +1,6 @@
// IS_APPLICABLE: false
@Suppress("UNSUPPORTED_FEATURE")
expect class Foo {
class Nested()<caret>
}