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 {
val <lineMarker></lineMarker>f: Int
get() = 3
}
trait <lineMarker></lineMarker>B : A
open class <lineMarker></lineMarker>C(b : B) : B by b, A {
}
class D(b : B) : C(b) {
override val <lineMarker descr="Overrides property in 'A'"></lineMarker>f: Int = 2
}