Minor. Moved test data to subdirectory.

This commit is contained in:
Evgeny Gerashchenko
2015-04-01 22:59:56 +03:00
parent a2bc9cd7de
commit 85e9f2207e
24 changed files with 130 additions and 110 deletions
@@ -0,0 +1,13 @@
trait <lineMarker></lineMarker>A {
fun <lineMarker></lineMarker>f() {
}
}
trait <lineMarker></lineMarker>B : A
open class <lineMarker></lineMarker>C(b : B) : B by b, A {
}
class D(b : B) : C(b) {
override fun <lineMarker descr="Overrides function in 'A'"></lineMarker>f() {}
}