mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
9 lines
217 B
Swift
9 lines
217 B
Swift
// RUN: %swift -parse %s -verify
|
|
|
|
// No space next to the '#if'
|
|
|
|
// expected-error@+1{{expected expression, var, or let in 'if' condition}}
|
|
#if// expected-error 2{{invalid character in source file}}
|
|
class D {}
|
|
#endif
|