Files
swift-mirror/test/Interpreter/SDK/Quartz_without_Foundation.swift
Ted Kremenek fad874708e Adjust test cases.
Swift SVN r17964
2014-05-12 22:01:52 +00:00

11 lines
254 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())");