mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Also removed the sdk 'feature' in favour of the more specific objc_interop. Swift SVN r24856
13 lines
324 B
Swift
13 lines
324 B
Swift
// RUN: %target-run-simple-swift | FileCheck %s
|
|
// rdar://16726530
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation
|
|
|
|
// Test overlain variadic methods.
|
|
let s = NSPredicate(format: "(lastName like[cd] %@) AND (birthday > %@)", "LLLL", "BBBB")
|
|
println(s.predicateFormat)
|
|
|
|
// CHECK: lastName LIKE[cd] "LLLL" AND birthday > "BBBB"
|