Files
swift-mirror/test/BuildConfigurations/armIOSTarget.swift
Joe Pamer b46d20240d Update build configuration tests to be independent of their runtime platform.
Also, add more tests for the "os" and "arch" target configurations, to exercise likely
build configurations for iOS and the iOS simulator.

Swift SVN r14307
2014-02-24 18:16:50 +00:00

8 lines
145 B
Swift

// RUN: %swift -parse %s -verify -D FOO -D BAR -target arm-apple-ios7.0 -D FOO
#if arch(ARM) && os(iOS)
class C {}
var x = C()
#endif
var y = x