Better tests

This commit is contained in:
Valentin Kipyatkov
2015-10-05 15:27:01 +03:00
parent 7b063d0391
commit ec685195bd
3 changed files with 6 additions and 6 deletions
@@ -1,11 +1,11 @@
interface I {
fun foo()
fun someFoo()
val someVal: Int
var someVar: Int
}
class Base1 {
protected open fun bar(){}
protected open fun someBar(){}
open val fromBase: String = ""
}