[stdlib] reverted removal of mixed string type operators

Fixes rdar://problem/19656287

This reverts changes from r24931, r24911, r24760 and r24536.

Swift SVN r24938
This commit is contained in:
Maxwell Swadling
2015-02-04 04:01:32 +00:00
parent f16398c6db
commit 2eb96bafee
4 changed files with 83 additions and 10 deletions

View File

@@ -1830,8 +1830,8 @@ NSStringAPIs.test("MixedTypeComparisons") {
expectTrue(ys != "\u{1e69}")
expectFalse("\u{1e69}" == ys)
expectTrue("\u{1e69}" != ys)
expectFalse(xs == ys)
expectTrue(xs != ys)
expectTrue(xs == ys)
expectFalse(xs != ys)
expectTrue(ys == ys)
expectFalse(ys != ys)
}