summaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api/value/change_values/libcxx/atomic/main.cpp
blob: 60dc085d7d1f6c2a8ece4c97a22d63ea770ce50b (plain)
1
2
3
4
5
6
7
#include <atomic>

int main()
{
    std::atomic<int> Q(1);
    return Q; // Set break point at this line.
}