mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
260 B
Swift
12 lines
260 B
Swift
// RUN: %target-build-swift -emit-executable %s -import-objc-header %S/Inputs/clang_rt-helper.h -o %t
|
|
|
|
// REQUIRES: c_runtime
|
|
|
|
// Just make sure we can build and link successfully.
|
|
|
|
if isRunningOnFairlyRecentOS() {
|
|
print("new!")
|
|
} else {
|
|
print("old...")
|
|
}
|