Multifile facade should contain reflection data,

otherwise callable references to stdlib functions will not work in the migration scheme.
This commit is contained in:
Dmitry Petrov
2015-09-14 17:14:16 +03:00
parent 5d0243d46f
commit 50ff2a3ad2
3 changed files with 27 additions and 1 deletions
@@ -0,0 +1,5 @@
fun doStuff(fn: String.() -> String) = "ok".fn()
fun box(): String {
return doStuff(String::toUpperCase)
}