Files
swift-mirror/test/ClangImporter/Inputs/custom-modules/PredefinedMacros.h
Jordan Rose 61798ff6ec [test] Rename test/ClangModules to test/ClangImporter. (#5618)
...to match the component in include/ and lib/. No content change.
2016-11-02 18:00:53 -07:00

10 lines
268 B
C

#if !defined(__swift__)
# error "__swift__ not defined"
#elif __swift__ < 30000
# error "Why are you using such an old version of Swift?"
#elif __swift__ >= 810000
# error "Is Swift 81 out already? If so, please update this test."
#else
void swift3ReadyToGo();
#endif