Files
swift-mirror/test/Interpreter/SDK/Quartz_without_Foundation.swift
2016-08-10 23:52:02 -07:00

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)")