mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
9 lines
399 B
Swift
9 lines
399 B
Swift
// RUN: %target-typecheck-verify-swift
|
|
|
|
func foo(_ msg: Int) {} // expected-note {{candidate expects value of type 'Int' for parameter #1}}
|
|
func foo(_ msg: Double) {} // expected-note {{candidate expects value of type 'Double' for parameter #1}}
|
|
|
|
func rdar38309176(_ errors: inout [String]) {
|
|
foo("error: \(errors[0])") // expected-error {{no exact matches in call to global function 'foo'}}
|
|
}
|