summaryrefslogtreecommitdiff
path: root/clang/test/Driver/driverkit-cplusplus.cpp
blob: 9f2e49f890316d41f266674dd932f9833e50cb07 (plain)
1
2
3
4
5
6
7
8
// REQUIRES: x86-registered-target
// RUN: %clang %s -target x86_64-apple-driverkit19.0 -fsyntax-only

#if __cplusplus != 201703L
#error DriverKit should be on C++17.
#endif

int main() { return 0; }