blob: 5c29680a374784a3d9106a2bf42afbeb65a59e42 [file] [log] [blame]
// PROBLEM: none
// DISABLE-ERRORS
fun foo(f: () -> Unit) {}
fun test(): Int {
foo {
return<caret> 0
}
return 1
}