Extract Function: Implement validation

This commit is contained in:
Alexey Sedunov
2014-04-21 18:23:28 +04:00
parent e052a64767
commit 0e9676173b
17 changed files with 230 additions and 32 deletions
@@ -0,0 +1,8 @@
// NEXT_SIBLING:
fun foo(a: Int): Int {
class A {
fun bar(): Int = a + 10
}
return <selection>A().bar()</selection>
}