mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Also removed the sdk 'feature' in favour of the more specific objc_interop. Swift SVN r24856
38 lines
2.4 KiB
Swift
38 lines
2.4 KiB
Swift
// RUN: %target-parse-verify-swift
|
|
|
|
// XFAIL: linux
|
|
|
|
import Foundation
|
|
|
|
// Common pitfall: trying to subscript a string with integers.
|
|
func testIntSubscripting(s: String, i: Int) {
|
|
let c1 = s[i] // expected-error{{'subscript' is unavailable: cannot subscript String with an Int}}
|
|
let c2 = s[17] // expected-error{{'subscript' is unavailable: cannot subscript String with an Int}}
|
|
let c3 = s[i...i] // expected-error{{subscript' is unavailable: cannot subscript String with a range of Int}}
|
|
let c4 = s[17..<20] // expected-error{{subscript' is unavailable: cannot subscript String with a range of Int}}
|
|
let c5 = s[17...20] // expected-error{{subscript' is unavailable: cannot subscript String with a range of Int}}
|
|
}
|
|
|
|
func testNonAmbiguousStringComparisons() {
|
|
let names = ["Chris", "Alex", "Ewa", "Barry", "Daniella"]
|
|
var reversed1 = sorted(names, { s1, s2 in s1 > s2 })
|
|
var reversed2 = sorted(names, { s1, s2 in s1 as String > s2 })
|
|
}
|
|
|
|
func testAmbiguousStringComparisons(s: String) {
|
|
let nsString = s as NSString
|
|
let a1 = s == nsString // expected-error{{'==' is unavailable: Comparing Swift.String and NSString is ambiguous}}
|
|
let a2 = s != nsString // expected-error{{'!=' is unavailable: Comparing Swift.String and NSString is ambiguous}}
|
|
let a3 = s < nsString // expected-error{{'<' is unavailable: Comparing Swift.String and NSString is ambiguous}}
|
|
let a4 = s <= nsString // expected-error{{'<=' is unavailable: Comparing Swift.String and NSString is ambiguous}}
|
|
let a5 = s >= nsString // expected-error{{'>=' is unavailable: Comparing Swift.String and NSString is ambiguous}}
|
|
let a6 = s > nsString // expected-error{{'>' is unavailable: Comparing Swift.String and NSString is ambiguous}}
|
|
// now the other way
|
|
let a7 = nsString == s // expected-error{{'==' is unavailable: Comparing Swift.String and NSString is ambiguous}}
|
|
let a8 = nsString != s // expected-error{{'!=' is unavailable: Comparing Swift.String and NSString is ambiguous}}
|
|
let a9 = nsString < s // expected-error{{'<' is unavailable: Comparing Swift.String and NSString is ambiguous}}
|
|
let a10 = nsString <= s // expected-error{{'<=' is unavailable: Comparing Swift.String and NSString is ambiguous}}
|
|
let a11 = nsString >= s // expected-error{{'>=' is unavailable: Comparing Swift.String and NSString is ambiguous}}
|
|
let a12 = nsString > s // expected-error{{'>' is unavailable: Comparing Swift.String and NSString is ambiguous}}
|
|
}
|