mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
8 lines
168 B
Swift
8 lines
168 B
Swift
// RUN: %swift -parse %s -verify
|
|
|
|
// With a space next to the '#if'
|
|
#if
|
|
class C {} // expected-error{{expected #else or #endif at end of configuration block}}
|
|
#endif
|
|
|