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