Treat expect classes as not having implicit default constructors

#KT-15522 Fixed
This commit is contained in:
Mikhail Zarechenskiy
2017-09-27 15:56:41 +03:00
parent 887e71a7c1
commit f3344ec2b2
29 changed files with 145 additions and 50 deletions
@@ -1,5 +1,5 @@
actual class Foo(x: Int) {
actual constructor() : this(0)
constructor() : this(0)
val x: Int = x
}