fun bar(): String {
  return try { // BLOCK
    ""
  }
  catch (e: Exception){ // BLOCK
    foo()
  } /*!! String */

}

