mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-06-14 03:55:58 +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();
|
||
|
|
}
|