PSI Pattern Matching: Add equivalence tests for JetPsiUnifier

This commit is contained in:
Alexey Sedunov
2014-07-29 17:15:25 +04:00
parent a3758f9fa3
commit f1c18d0e3f
192 changed files with 3199 additions and 0 deletions
@@ -0,0 +1,13 @@
object {
val a = 1
fun b() = a + 1
val c: Int
get() = b() + 1
}
object {
fun b() = a + 1
val a = 1
val c: Int
get() = b() + 1
}