Pull Up: Move Kotlin -> Kotlin tests to separate directory

This commit is contained in:
Alexey Sedunov
2015-08-04 14:52:23 +03:00
committed by Alexey Sedunov
parent a695202846
commit ffc56a7c31
63 changed files with 96 additions and 96 deletions
+10
View File
@@ -0,0 +1,10 @@
open class A {
open fun bar() = 1
}
class <caret>B: A() {
override fun bar() = 1
// INFO: {"checked": "true"}
fun foo() = super.bar()
}