// PROBLEM: none fun run(f: () -> T) = f() fun foo(s: String) = s fun test() { run { foo("Hello") Unit } }