mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-23 03:10:04 +08:00
12 lines
119 B
C++
12 lines
119 B
C++
|
#include <atomic>
|
||
|
|
||
|
static int test()
|
||
|
{
|
||
|
std::atomic<long long> x;
|
||
|
return x;
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
return test();
|
||
|
}
|