1#include <atomic>
2
3int main()
4{
5 std::atomic<int> Q(1);
6 return Q; // Set break point at this line.
7}
8

source code of lldb/test/API/python_api/value/change_values/libcxx/atomic/main.cpp