mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 03:00:14 +08:00
13 lines
120 B
C++
13 lines
120 B
C++
#include <atomic>
|
|
|
|
static int test()
|
|
{
|
|
std::atomic<long long> x;
|
|
return x;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
return test();
|
|
}
|