Files
swift-mirror/test/Interpreter/SDK/header_static.swift
Arnold Schwaighofer 859fbc0162 More executable_test for the test directory
Swift SVN r29280
2015-06-03 23:28:51 +00:00

11 lines
273 B
Swift

// RUN: %target-run-simple-swift | FileCheck %s
// REQUIRES: executable_test
// REQUIRES: objc_interop
import Foundation
let value: CUnsignedInt = 0xFF00FF00
// CHECK: {{^}}ff00ff00 ff00ff{{$}}
print("\(String(value, radix: 16)) \(String(NSSwapInt(value), radix: 16))")