Fix type of super

This commit is contained in:
Steven Schäfer
2019-04-30 14:01:17 +02:00
committed by max-kammerer
parent 209a5d8464
commit f5a78213b2
6 changed files with 43 additions and 38 deletions
+2
View File
@@ -2,6 +2,8 @@ open class Base {
open fun foo() {}
open val bar: String = ""
override fun hashCode() = super.hashCode()
}
class Derived : Base() {