mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Also move a Parse test that's really about conditional compilation directives into the new folder.
9 lines
322 B
Swift
9 lines
322 B
Swift
// RUN: %swift -parse %s -verify -D FOO -D BAR -target powerpc64-unknown-linux-gnu -disable-objc-interop -D FOO -parse-stdlib
|
|
// RUN: %swift-ide-test -test-input-complete -source-filename=%s -target powerpc64-unknown-linux-gnu
|
|
|
|
#if arch(powerpc64) && os(Linux) && _runtime(_Native)
|
|
class C {}
|
|
var x = C()
|
|
#endif
|
|
var y = x
|