blob: 740bd57ba1255de870e7c9036831265d282db7ae [file] [log] [blame]
// RUN: not %target-typecheck-verify-swift
extension Dictionary {
func doSomething<T>() -> [T : Value] {
let pairs: [(T, Value)] = []
return Dictionary(uniqueKeysWithValues: pairs)
}
}