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.
11 lines
88 B
Swift
11 lines
88 B
Swift
// RUN: %target-parse-verify-swift -D FOO
|
|
|
|
var x = 0
|
|
|
|
#if FOO
|
|
x = 1
|
|
#else
|
|
x = 2
|
|
#endif
|
|
|