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
@@ -0,0 +1,27 @@
// WITH_RUNTIME
open class A
abstract class <caret>B: A() {
// INFO: {"checked": "true", "toAbstract": "true"}
val x = 1
// INFO: {"checked": "true", "toAbstract": "true"}
val y: Int get() = 2
// INFO: {"checked": "true", "toAbstract": "true"}
val z: Int by lazy { 3 }
// INFO: {"checked": "true", "toAbstract": "true"}
abstract val t: Int
// INFO: {"checked": "true", "toAbstract": "true"}
fun foo(n: Int): Boolean = n > 0
// INFO: {"checked": "true", "toAbstract": "true"}
abstract fun bar(s: String)
// INFO: {"checked": "true", "toAbstract": "true"}
inner class X {
}
// INFO: {"checked": "true", "toAbstract": "true"}
class Y {
}
}