Files
swift-mirror/test/Interpreter/SDK/Quartz_without_Foundation.swift
2015-05-04 23:16:06 +00:00

11 lines
251 B
Swift

// RUN: %target-run-simple-swift | FileCheck %s
// REQUIRES: OS=macosx
// FIXME: iOS doesn't have CIVector?
import QuartzCore
// Do NOT add anything that publicly imports Foundation here!
var v = CIVector(x:7);
// CHECK: x = 7
println("x = \(v.X)")