Skip to content
Snippets Groups Projects
Forked from waLBerla / waLBerla
308 commits behind the upstream repository.
TestClangOpenMPBug.cpp 173 B
#include <iostream>

int main()
{
   int min = -10;

#pragma omp parallel for
   for (int i = min; i <= 10; ++i)
   {
      std::cout << i << std::endl;
   }

   return 0;
}