// RUN: %target-parse-verify-swift class Dictionary : DictionaryLiteralConvertible { // expected-error {{type 'Dictionary' does not conform to protocol 'DictionaryLiteralConvertible'}} typealias Key = K typealias Value = V init(dictionaryLiteral xs: (K)...){} // expected-note {{candidate has non-matching type '(dictionaryLiteral: (K)...)'}} } func useDict(d: Dictionary) {} useDict(["Hello" : 1]) useDict(["Hello" : 1, "World" : 2])