blob: f1841c8a4dace8737cb59693b0137e28f868d4ee [file] [log] [blame]
// RUN: not %target-swift-frontend %s -typecheck -o /dev/null
class FakeDictionary<KeyType, ValueType> : ExpressibleByDictionaryLiteral {
convenience required init(dictionaryLiteral elements: (FakeDictionary.Key, FakeDictionary.Value)...) {
self.init()
}
}