项目文件夹

文件
2026-07-13 12:06:04 +08:00

13 行
120 B
C++

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