La aplicación de función parcial ejecuta prematuramente codeblock cuando se usa con guión bajo

Dado:

def save(f: => Any)(run:Boolean) { if (run) { println("running f"); f } else println("not running f") } 

Puedo llamarlo con:

save("test")(true) -> running f
save("test")(false) -> not running f
save(throw new RuntimeException("boom!"))(false) -> not running f
save(throw new RuntimeException("boom!"))(true) -> running f and then exception thrown

Aquí está el comportamiento curioso con aplicación parcial:

save(throw new RuntimeException("boom!"))(_) -> (Boolean) => Unit = <function1> //as expected
save(throw new RuntimeException("boom!")) _ -> exception thrown

El bloque de código se evalúa inmediatamente sin pasarse como una función. ¿Cuál es la diferencia entre las 2 declaraciones anteriores?