mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
9 lines
325 B
Swift
9 lines
325 B
Swift
// RUN: %swift -parse %s -verify -D FOO -D BAR -target x86_64-unknown-windows-cygnus -disable-objc-interop -D FOO -parse-stdlib
|
|
// RUN: %swift-ide-test -test-input-complete -source-filename=%s -target x86_64-unknown-windows-cygnus
|
|
|
|
#if arch(x86_64) && os(Windows) && _runtime(_Native)
|
|
class C {}
|
|
var x = C()
|
|
#endif
|
|
var y = x
|