Fix for non-accessible constructor case

This commit is contained in:
Valentin Kipyatkov
2015-05-08 20:31:32 +03:00
parent a5dabac296
commit 381049d13e
3 changed files with 12 additions and 0 deletions
@@ -0,0 +1,5 @@
// "class org.jetbrains.kotlin.idea.quickfix.SuperClassNotInitialized$AddParenthesisFix" "false"
// ERROR: This type has a constructor, and thus must be initialized here
open class Base private(p: Int)
class C : Base<caret>