mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
6 lines
181 B
Swift
6 lines
181 B
Swift
// RUN: %swift -parse %s -verify -D FOO -D BAZ -target x86_64-apple-darwin11.3.0
|
|
|
|
#if arch(X64) && os(OSX)
|
|
println("Mac") // This should not be parsed as a trailing closure
|
|
#endif
|