mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-01-19 00:08:54 +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();
|
|
} |