ExtractionTest: Change test data layout

This commit is contained in:
Alexey Sedunov
2014-04-10 19:27:32 +04:00
parent 24d8557a5a
commit 4dec0508a6
57 changed files with 218 additions and 282 deletions
@@ -4,14 +4,4 @@ class A {
fun apply(x: (A) -> Int) = 2
fun test() {
apply<selection>{it.foo()}</selection>
}
/*
class A {
fun foo() = 1
}
fun apply(x: (A) -> Int) = 2
fun test() {
val function: (A) -> Int = { it.foo() }
apply(function)
}
*/
}