mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
7 lines
235 B
Swift
7 lines
235 B
Swift
// RUN: %target-typecheck-verify-swift
|
|
|
|
// https://github.com/apple/swift/issues/46788
|
|
// Don't warn about non-trailing closures followed by parameters with
|
|
// default arguments.
|
|
func f1(_ f: () -> (), bar: Int = 10) { } // no-warning
|