// "Create function 'foo'" "true" // COMPILER_ARGUMENTS: -XXLanguage:-NewInference fun run(f: () -> T) = f() fun test() { run { foo() } } fun foo(): Any { TODO("Not yet implemented") }