10 lines
93 B
C++
Raw Normal View History

2025-05-20 14:21:24 +09:00
#include <omp.h>
int main() {
#ifdef _OPENMP
return 0;
#else
breaks_on_purpose
#endif
}