func useClosure(_ c: () throws -> Void) rethrows { try c() } func f(arg: () throws -> Void) rethrows { try useClosure(arg) }