2024-07-24 15:17:01 +08:00

13 lines
120 B
C++

#include <atomic>
static int test()
{
std::atomic<long long> x;
return x;
}
int main()
{
return test();
}