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.
16 lines
402 B
Swift
16 lines
402 B
Swift
// RUN: %swift -typecheck %s -verify -target x86_64-apple-macosx10.9 -parse-stdlib
|
|
// RUN: %swift-ide-test -test-input-complete -source-filename=%s -target x86_64-apple-macosx10.9
|
|
|
|
#if arch(x86_64) && os(OSX) && _runtime(_ObjC) && _endian(little)
|
|
class C {}
|
|
var x = C()
|
|
#endif
|
|
var y = x
|
|
|
|
|
|
#if arch(x86_64) && os(macOS) && _runtime(_ObjC) && _endian(little)
|
|
class CC {}
|
|
var xx = CC()
|
|
#endif
|
|
var yy = xx
|