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
19 lines
386 B
Swift
19 lines
386 B
Swift
// RUN: %target-run-simple-swift | FileCheck %s
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import Dispatch
|
|
import Foundation
|
|
|
|
// Be paranoid about the value of large 32-bit UInts on 32-bit architectures.
|
|
println(DISPATCH_PROC_EXIT)
|
|
// CHECK: 2147483648
|
|
|
|
println(DISPATCH_QUEUE_CONCURRENT.description)
|
|
// CHECK-NEXT: OS_dispatch_queue_attr
|
|
|
|
println(dispatch_data_empty.description)
|
|
// CHECK-NEXT: <>
|
|
|
|
|