2022-11-04 09:35:42 -07:00

13 lines
182 B
C++

/*
* @@name: threadprivate.5
* @@type: C++
* @@operation: view
* @@expect: unspecified
* @@version: pre_omp_3.0
*/
class T {
public:
static int i;
#pragma omp threadprivate(i)
};