New default checks for mixed hierarchies

Old and new schemes
This commit is contained in:
Mikhail Bogdanov
2020-07-16 12:15:06 +02:00
parent de02b31ad7
commit 125c72cb8d
15 changed files with 283 additions and 38 deletions
@@ -0,0 +1,13 @@
package base
interface Check {
fun test(): String {
return "fail";
}
var test: String
get() = "123"
set(value) { value.length}
}
open class CheckClass : Check