Created JetScope.memberScopeAsFileScope()

This commit is contained in:
Stanislav Erokhin
2015-08-19 18:10:05 +03:00
parent aa3be395a4
commit 2a0159f23b
6 changed files with 141 additions and 16 deletions
@@ -0,0 +1,9 @@
class A(foo: Int.() -> Unit) {
init {
4.foo()
}
}
fun test(foo: Int.() -> Unit) {
4.foo()
}