[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Driver / driverkit-cplusplus.cpp
blob9f2e49f890316d41f266674dd932f9833e50cb07
1 // REQUIRES: x86-registered-target
2 // RUN: %clang %s -target x86_64-apple-driverkit19.0 -fsyntax-only
4 #if __cplusplus != 201703L
5 #error DriverKit should be on C++17.
6 #endif
8 int main() { return 0; }