blob: 99b23a24b0babe3dbb0f55cd62c951f715ba2a49 [file] [log] [blame]
// RUN: %target-typecheck-verify-swift
func f1() {
#if DEBUG
return // no-error
#endif
}
func f2() {
#if DEBUG
return // no-error
#else
return // no-error
#endif
}