KT-2784 VerifyError when passing a value to a class object's super type constructor

#KT-2784 Fixed
This commit is contained in:
Mikhael Bogdanov
2013-08-12 14:33:56 +04:00
parent b46e0361c5
commit c9215ed8a5
6 changed files with 21 additions and 12 deletions
@@ -0,0 +1,10 @@
open class Factory(p: Int)
class A {
class object : Factory(1)
}
fun box() : String {
A
return "OK"
}