mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 22:31:18 -05:00
78bbd58545
Fixes: #25114
7 lines
81 B
C++
7 lines
81 B
C++
#include <atomic>
|
|
int main()
|
|
{
|
|
std::atomic<long long>(0).load();
|
|
return 0;
|
|
}
|