mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
11 lines
242 B
Swift
11 lines
242 B
Swift
// RUN: %target-run-simple-swift | %FileCheck %s
|
|
// REQUIRES: executable_test
|
|
// REQUIRES: OS=macosx
|
|
|
|
import QuartzCore
|
|
// Do NOT add anything that publicly imports Foundation here!
|
|
|
|
var v = CIVector(x:7);
|
|
// CHECK: x = 7
|
|
print("x = \(v.x)")
|