Assuming a @nonescaping
variadic closure parameter as in
func method(_ closures: () -> Void...)
then mutating it to @escaping
as in
func method(_ closures: @escaping () -> Void...)
produces the following error.
@escaping attribute may only be used in function parameter position