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