1
0
mirror of https://github.com/OpenMP/Examples.git synced 2025-04-10 16:32:11 +01:00
2021-08-17 09:11:55 -07:00

13 lines
170 B
C++

/*
* @@name: threadprivate.5c
* @@type: C++
* @@compilable: no
* @@linkable: no
* @@expect: nothing
*/
class T {
public:
static int i;
#pragma omp threadprivate(i)
};