Files
swift-mirror/test/BuildConfigurations/endif-on-end-of-file.swift

16 lines
347 B
Swift

// RUN: %target-parse-verify-swift
#if DEBUG
#endif ; // expected-error {{extra tokens at the end of the build configuration directive}}
// <rdar://problem/17569958> #endif not parsed correctly when occurs as last line in file
#if DEBUG
func debug(msg: String) {
println(msg)
}
#else
func debug(msg: String) {
}
#endif // last line in file