mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
These tests were defining an unused macro for no clear reason. Remove them to simplify the tests.
15 lines
413 B
Swift
15 lines
413 B
Swift
// RUN: %swift -typecheck %s -verify -target i386-apple-ios7.0 -parse-stdlib
|
|
// RUN: %swift-ide-test -test-input-complete -source-filename=%s -target i386-apple-ios7.0
|
|
|
|
#if os(tvOS) || os(watchOS)
|
|
// This block should not parse.
|
|
// os(tvOS) or os(watchOS) does not imply os(iOS).
|
|
let i: Int = "Hello"
|
|
#endif
|
|
|
|
#if arch(i386) && os(iOS) && _runtime(_ObjC) && _endian(little)
|
|
class C {}
|
|
var x = C()
|
|
#endif
|
|
var y = x
|