10 lines
93 B
C++
Raw Normal View History

2025-05-24 19:30:25 +08:00
#include <omp.h>
int main() {
#ifdef _OPENMP
return 0;
#else
breaks_on_purpose
#endif
}