Renamed test data folder

This commit is contained in:
Valentin Kipyatkov
2015-09-23 16:08:30 +03:00
parent ade9cbcafb
commit c8b6db4e57
57 changed files with 342 additions and 342 deletions
@@ -0,0 +1,17 @@
open class AAA {
var x = 42
protected set
fun foo(other: AAA) {
println(x)
println(other.x)
x = 10
}
}
internal class BBB : AAA() {
fun bar() {
println(x)
x = 10
}
}