Extract Function: Add test data

This commit is contained in:
Alexey Sedunov
2014-04-10 20:09:13 +04:00
parent 4dec0508a6
commit 0d90dcf010
111 changed files with 1596 additions and 13 deletions
@@ -0,0 +1,20 @@
public open class Z {
val z: Int = 0
}
// NEXT_SIBLING:
fun i(a1: A, b1: A.B): Int {
return a1.a + b1.b + b1.z
}
public class A(): Z() {
var a: Int = 1
public inner class B(): Z() {
var b: Int = 1
fun foo(): Int {
return i(this@A, this@B)
}
}
}